:root {
  --bg: #eef1fb;
  --blue: #385a9d;
  --blue-dark: #22356a;
  --blue-deep: #17326f;
  --blue-soft: #dfe8fb;
  --green: #5aa45c;
  --green-dark: #438149;
  --orange: #f2a424;
  --gold-soft: #ffd46c;
  --text: #314165;
  --muted: #667394;
  --white: #ffffff;
  --panel: rgba(255,255,255,0.82);
  --border: rgba(105, 132, 193, 0.2);
  --shadow: 0 18px 40px rgba(100, 123, 177, 0.18);
  --shadow-lg: 0 26px 56px rgba(70, 94, 150, 0.24);
  --shadow-xl: 0 34px 70px rgba(52, 78, 135, 0.28);
  --radius: 18px;
  --img-solar-a: url("https://images.pexels.com/photos/16586163/pexels-photo-16586163.jpeg?auto=compress&cs=tinysrgb&w=1600");
  --img-solar-b: url("https://images.pexels.com/photos/6876535/pexels-photo-6876535.jpeg?auto=compress&cs=tinysrgb&w=1600");
  --img-solar-c: url("https://images.pexels.com/photos/16586150/pexels-photo-16586150.jpeg?auto=compress&cs=tinysrgb&w=1600");
  --img-engineer-a: url("https://images.pexels.com/photos/4254170/pexels-photo-4254170.jpeg?auto=compress&cs=tinysrgb&w=1200");
  --img-engineer-b: url("https://images.pexels.com/photos/19895914/pexels-photo-19895914.jpeg?auto=compress&cs=tinysrgb&w=1200");
  --img-engineer-c: url("https://images.pexels.com/photos/6961088/pexels-photo-6961088.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255,193,90,0.18), transparent 22%),
    radial-gradient(circle at top left, rgba(78,124,214,0.14), transparent 24%),
    linear-gradient(180deg, #f7f9fd 0%, #eef3fa 44%, #edf2f8 100%);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 28px)); margin: 0 auto; }
main { overflow: hidden; }
h1, h2, h3, .brand-text {
  font-family: "Sora", "Inter", Arial, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 250, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(91, 114, 170, 0.14);
  box-shadow: 0 10px 30px rgba(71, 94, 146, 0.1);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--green), var(--orange));
  opacity: 0.95;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #1d3f97;
  letter-spacing: 0.02em;
}
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    conic-gradient(from 225deg, #2b5bb0 0 25%, #f6b545 25% 48%, #2f76cc 48% 70%, #79a0e0 70% 100%);
  clip-path: polygon(50% 0%, 64% 34%, 100% 50%, 64% 66%, 50% 100%, 36% 66%, 0% 50%, 36% 34%);
  box-shadow: 0 10px 24px rgba(61, 101, 190, 0.24);
}
.brand-mark--mini { width: 20px; height: 20px; border-radius: 4px; }
.brand-mark--image {
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  clip-path: none;
  box-shadow: none;
  display: block;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  font-size: 1.55rem;
  text-transform: uppercase;
}
.brand-text::after {
  content: "engineering energy delivering excellence";
  margin-top: 4px;
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  color: #7382a3;
  font-weight: 700;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.86rem;
}
.flash-bar {
  position: relative;
  z-index: 50;
  overflow: hidden;
}
.flash-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent 35%, rgba(255,255,255,0.08));
  pointer-events: none;
}
.flash-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
}
.flash-bar__ticker {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
.flash-bar__track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 56px;
  animation: flashTicker 20s linear infinite;
  will-change: transform;
}
.flash-bar__track span {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.flash-bar__inner a {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  color: inherit;
  font-weight: 700;
  font-size: 0.76rem;
}
@keyframes flashTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 28px)); }
}
.site-nav a { color: #44526e; }
.site-nav a:hover { color: #274998; }
.site-nav a.active { color: var(--blue); font-weight: 700; }
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.nav-dropdown > a::after {
  content: none;
}
.nav-dropdown-toggle {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform 180ms ease;
}
.nav-dropdown-toggle span {
  width: 14px;
  height: 14px;
  border-right: 3px solid #315391;
  border-bottom: 3px solid #315391;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 220ms ease, border-color 180ms ease;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 340px;
  max-width: 420px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(252, 253, 255, 0.9);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(120, 144, 194, 0.2);
  box-shadow: 0 24px 50px rgba(72, 93, 142, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 30;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle {
  background: transparent;
  box-shadow: none;
}
.nav-dropdown:hover .nav-dropdown-toggle span,
.nav-dropdown:focus-within .nav-dropdown-toggle span,
.nav-dropdown.is-open .nav-dropdown-toggle span {
  transform: translateY(2px) rotate(-135deg);
  border-color: #d97813;
}
.nav-submenu a {
  padding: 11px 12px;
  border-radius: 10px;
  color: #4d6188;
  font-size: 0.84rem;
  line-height: 1.45;
}
.nav-submenu a:hover {
  color: #2b4b94;
  background: rgba(236, 242, 253, 0.92);
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-quick-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 4px;
}
.nav-quick-link {
  padding: 9px 12px;
  border-radius: 10px;
  color: #526486 !important;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(120, 144, 194, 0.2);
}
.nav-quick-link--strong {
  color: #2a4c95 !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(239,244,253,0.96));
  box-shadow: 0 10px 18px rgba(114, 137, 189, 0.12);
}
.company-login-cta {
  padding: 10px 16px;
  border-radius: 12px;
  color: #5b4208 !important;
  background: linear-gradient(180deg, #ffd978, #eeb33a);
  border: 1px solid rgba(181, 128, 12, 0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55), 0 10px 18px rgba(190, 138, 25, 0.22);
  font-weight: 800;
  white-space: nowrap;
}
.company-login-cta:hover,
.company-login-cta.active {
  color: #4a3505 !important;
  background: linear-gradient(180deg, #ffe08b, #f0b63d);
}
.header-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, #5db261, #3f9550 52%, #2d7d8f 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 14px 28px rgba(62, 126, 110, 0.3);
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 18px 34px rgba(62, 126, 110, 0.34);
}

.btn--with-icon,
.header-cta.btn--with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn--calendly::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-color: currentColor;
  -webkit-mask: url("../icons/calendly.svg") center / contain no-repeat;
  mask: url("../icons/calendly.svg") center / contain no-repeat;
}
.nav-toggle { display: none; background: none; border: 0; padding: 0; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--blue-dark); margin: 5px 0; border-radius: 999px; }

.section-solar {
  position: relative;
  padding: 42px 0;
}
.section-solar::before {
  content: none;
}
.section-solar > .container { position: relative; z-index: 1; }
.section-support,
.section-services,
.section-logos,
.section-partner,
.section-blog,
.section-projects {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-support {
  background-image: linear-gradient(180deg, rgba(244,247,252,0.28), rgba(244,247,252,0.28)), url("https://images.pexels.com/photos/6961123/pexels-photo-6961123.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center 36%;
}
.section-partner {
  background-image: linear-gradient(180deg, rgba(12,25,58,0.72), rgba(12,25,58,0.72)), var(--img-solar-b);
}
.section-logos {
  background-image: linear-gradient(180deg, rgba(246,249,253,0.42), rgba(246,249,253,0.42)), url("https://images.pexels.com/photos/9875441/pexels-photo-9875441.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center 52%;
}
.section-services {
  background-image: linear-gradient(180deg, rgba(246,249,253,0.46), rgba(246,249,253,0.46)), url("https://images.pexels.com/photos/159397/solar-panel-array-power-sun-electricity-159397.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center 48%;
}
.section-blog {
  background-image: linear-gradient(180deg, rgba(11,24,56,0.7), rgba(11,24,56,0.7)), url("https://images.pexels.com/photos/356036/pexels-photo-356036.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center 46%;
}
.section-projects {
  background-image: linear-gradient(180deg, rgba(10,22,52,0.72), rgba(10,22,52,0.72)), var(--img-solar-a);
}
.section-title, .section-heading h1, .section-heading h2 {
  margin: 0 0 12px;
  text-align: center;
  color: #365694;
  font-size: clamp(2.05rem, 2.2vw, 2.65rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.section-title--small { font-size: 1.5rem; letter-spacing: 0.06em; }
.section-heading, .section-intro, .section-heading p, .subcopy { text-align: center; }
.section-heading p, .section-intro, .subcopy, .eyebrow { color: var(--muted); }
.section-intro,
.subcopy,
.section-heading p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-heading p,
.section-intro,
.subcopy,
.eyebrow,
.feature-card p,
.partner-card p,
.help-card,
.process-card p,
.team-card p,
.solution-card p,
.audience-card p,
.solution-flow p,
.about-pillar p,
.about-service-card p,
.project-content p,
.blog-copy p,
.testimonial-card p,
.faq-item p,
.contact-card p,
.detail-card p,
.detail-list-item {
  color: #43536f;
}
.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 800;
  color: #ffffff;
}
.section-heading {
  margin-bottom: 22px;
}
.section-heading h2,
.section-heading h1 {
  position: relative;
  padding-bottom: 16px;
}
.section-heading h2::after,
.section-heading h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 112px;
  height: 5px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(60,107,195,0), #3e72d1 22%, #f1b649 78%, rgba(241,182,73,0));
}
.section-heading--light h2,
.section-heading--light p,
.section-heading--light .mini-brand { color: #fff; }
.section-heading--light h2 {
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}
.section-heading--light p {
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.hero-section {
  padding-top: 36px;
  padding-bottom: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(16,32,72,0.24)),
    var(--hero-image, var(--img-solar-b));
  background-size: cover;
  background-position: var(--hero-position, center 58%);
}
.hero-section::after,
.section-problems::after,
.section-partner::after,
.section-blog::after,
.section-projects::after,
.footer-cta::after {
  content: none;
}
.hero-card {
  padding-top: 44px;
  padding-bottom: 82px;
}
.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 34px 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(247,250,255,0.68));
  border: 1px solid rgba(255,255,255,0.58);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.46), rgba(255,255,255,0));
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(111, 138, 194, 0.26);
  color: #355394;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(109, 132, 182, 0.12);
}
.hero-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #69b66c, #4f9951);
  box-shadow: 0 0 0 4px rgba(100, 171, 103, 0.14);
}
.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1.08;
  color: #1f3667;
  text-shadow: none;
}
.hero-copy p {
  margin: 0 auto 22px;
  max-width: 700px;
  color: #324969;
  font-size: 0.98rem;
  line-height: 1.65;
  text-shadow: none;
}
.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto 24px;
  max-width: 820px;
}
.hero-highlight {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(111, 138, 194, 0.24);
  color: #35527f;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(109, 132, 182, 0.14);
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #2f8fb2, #3c73ca 46%, #56b365 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 18px 32px rgba(61, 112, 175, 0.28);
}
.btn-secondary {
  color: #2f4776;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(239,244,253,.92));
  border-color: rgba(96, 126, 186, 0.26);
  box-shadow: 0 16px 28px rgba(125, 145, 190, 0.16);
}
.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, #f8bf4e, #ef9820 60%, #de7e19 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 16px 28px rgba(242, 164, 36, 0.3);
}
.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 22px 36px rgba(69, 95, 153, 0.22);
}

.stats-shell { margin-top: -18px; }
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(246,249,255,0.72));
  border: 1px solid rgba(129, 149, 194, 0.24);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.stat-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(247, 250, 255, 0.72);
  border-radius: 12px;
  border: 1px solid rgba(135, 156, 204, 0.18);
}
.stat-icon, .trust-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #b5df9d 35%, #5da358 36%, #5da358 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.stat-item h3 { margin: 0 0 4px; font-size: 0.94rem; color: #405a8d; line-height: 1.2; }
.stat-item p { margin: 0; font-size: 0.74rem; color: var(--muted); }
.trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px auto 0 auto;
  padding: 10px 18px;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(8, 20, 48, 0.84);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 28px rgba(5, 12, 32, 0.24);
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
.stars { color: #f4b138; letter-spacing: 0.08em; }

.feature-grid,
.partner-grid,
.help-grid,
.process-grid,
.team-grid {
  display: grid;
  gap: 18px;
}
.section-support .section-title,
.section-services .section-title,
.section-project-preview .section-title,
.section-team .section-title,
.section-logos .section-title,
.section-blog .section-title {
  position: relative;
  padding-bottom: 12px;
}
.section-support .section-title::after,
.section-services .section-title::after,
.section-project-preview .section-title::after,
.section-team .section-title::after,
.section-logos .section-title::after,
.section-blog .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 90px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #4d74c9, #f0b53f);
}
.feature-grid { grid-template-columns: repeat(6, 1fr); }
.partner-grid, .help-grid { grid-template-columns: repeat(4, 1fr); }
.process-grid { grid-template-columns: repeat(3, 1fr); }
.team-grid { grid-template-columns: repeat(3, 1fr); }

.feature-card,
.partner-card,
.help-card,
.process-card,
.team-card,
.service-card,
.testimonial-card,
.project-card,
.blog-featured,
.blog-mini,
.faq-item,
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(245,248,252,0.92));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(12px);
  position: relative;
}
.feature-card,
.partner-card,
.help-card,
.process-card,
.team-card { padding: 22px 18px; text-align: center; }
.feature-card {
  padding: 18px 12px 16px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #b5df9d 35%, #5da358 36%, #5da358 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.8);
}
.feature-card h3, .partner-card h3, .process-card h3, .team-card h3 { margin: 10px 0 8px; color: #375596; }
.feature-card p, .partner-card p, .process-card p, .team-card p { margin: 0; color: var(--muted); font-size: 0.93rem; line-height: 1.6; }
.feature-card h3 { font-size: 1.02rem; min-height: 48px; margin-top: 14px; }
.feature-card p { font-size: 0.78rem; line-height: 1.45; }
.feature-card:hover,
.partner-card:hover,
.help-card:hover,
.process-card:hover,
.team-card:hover,
.service-card:hover,
.testimonial-card:hover,
.project-card:hover,
.blog-featured:hover,
.blog-mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 52px rgba(88, 111, 165, 0.24);
  border-color: rgba(79, 110, 181, 0.34);
}
.feature-card::after,
.partner-card::after,
.service-card::after,
.project-card::after,
.blog-featured::after,
.blog-mini::after,
.testimonial-card::after,
.contact-card::after,
.faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(73,113,203,0.16), rgba(255,255,255,0), rgba(241,182,73,0.18));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.feature-card::after,
.partner-card::after,
.service-card::after,
.project-card::after,
.blog-featured::after,
.blog-mini::after {
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 38%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0));
  pointer-events: none;
}
.icon, .service-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff, #dfeafc);
  border: 1px solid rgba(118, 145, 200, 0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  position: relative;
  overflow: visible;
}
.icon::before, .service-icon::before, .service-icon::after, .icon::after {
  content: "";
  position: absolute;
}
.icon-folder::before, .icon-panel::before { inset: 14px 12px 18px; border: 3px solid #6c91da; border-radius: 4px; }
.icon-folder::after { width: 18px; height: 10px; left: 16px; top: 10px; background: #8fdf95; border-radius: 3px 3px 0 0; }
.icon-grid::before { inset: 12px; border: 3px dashed #7b93dc; border-radius: 8px; }
.icon-shield::before, .icon-badge::before { inset: 10px 12px 12px; border: 3px solid #5677c8; border-radius: 18px 18px 22px 22px; clip-path: polygon(50% 0%, 100% 20%, 100% 62%, 50% 100%, 0% 62%, 0% 20%); }
.icon-code::before, .icon-software::before { content: "</>"; color: #446bc8; inset: 15px 0 0; text-align: center; font-weight: 800; font-size: 1rem; }
.icon-team::before, .icon-staffing::before { width: 12px; height: 12px; left: 10px; top: 15px; background: #6f8fd5; border-radius: 50%; box-shadow: 12px 0 0 #93adf0, 24px 0 0 #6f8fd5; }
.icon-team::after, .icon-staffing::after { width: 38px; height: 16px; left: 8px; bottom: 10px; border: 3px solid #6f8fd5; border-top-left-radius: 18px; border-top-right-radius: 18px; border-bottom: 0; }
.icon-clock::before { inset: 10px; border: 3px solid #6988d1; border-radius: 50%; }
.icon-clock::after { width: 3px; height: 14px; background: #6988d1; left: 26px; top: 16px; transform-origin: bottom center; transform: rotate(40deg); border-radius: 999px; }
.icon-check::before { inset: 16px 14px; border-left: 4px solid #6388d7; border-bottom: 4px solid #6388d7; transform: rotate(-45deg); }
.icon-tower::before { width: 0; height: 0; left: 18px; top: 10px; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 26px solid #6886cf; }
.icon-bolt::before, .icon-electrical::before { width: 16px; height: 28px; left: 19px; top: 12px; background: #5676cb; clip-path: polygon(45% 0%, 100% 0, 60% 44%, 85% 44%, 22% 100%, 42% 56%, 15% 56%); }
.icon-regulatory::before, .icon-approval::before { inset: 12px; border-radius: 12px; border: 3px solid #6c8fe0; }
.icon-regulatory::after, .icon-approval::after { width: 18px; height: 4px; left: 18px; top: 20px; background: #6c8fe0; box-shadow: 0 8px 0 #6c8fe0, 0 16px 0 #6c8fe0; }
.icon-finance::before { content: "$"; inset: 10px 0 0; font-size: 1.4rem; text-align: center; font-weight: 800; color: #6783d3; }
.icon-utility::before { inset: 14px 16px 16px; border-left: 3px solid #6080d2; border-bottom: 3px solid #6080d2; border-right: 3px solid #6080d2; border-radius: 0 0 10px 10px; }

.section-problems {
  padding-top: 12px;
  padding-bottom: 30px;
  background:
    linear-gradient(180deg, rgba(244,247,251,0.3), rgba(244,247,251,0.3)),
    url("https://images.pexels.com/photos/19895880/pexels-photo-19895880.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center 34%;
}
.compare-board {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.44), rgba(234,240,250,0.62));
  border: 1px solid rgba(123, 147, 197, 0.24);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.compare-column {
  padding: 16px;
  border-radius: 16px;
}
.compare-column h3 { margin: 0 0 14px; text-align: center; font-size: 1.35rem; }
.compare-column--problem {
  background: linear-gradient(180deg, rgba(57,74,112,.88), rgba(78, 97, 135, 0.74));
  color: #fff;
}
.compare-column--solution {
  background: linear-gradient(180deg, rgba(245,248,252,.96), rgba(230,238,248,.92));
  color: #45633d;
  position: relative;
}
.compare-item {
  margin-bottom: 12px;
  padding: 12px 16px 12px 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  font-size: 0.9rem;
  line-height: 1.35;
}
.compare-item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #f7af7c, #e36358);
}
.compare-column--solution .compare-item {
  background: rgba(255,255,255,0.9);
  color: #52714c;
  border-color: rgba(145, 184, 138, 0.26);
}
.compare-column--solution .compare-item::before {
  background: linear-gradient(180deg, #9cd38f, #5aa45c);
}
.compare-center {
  position: relative;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(104, 131, 188, 0.16), rgba(255,255,255,0.04));
  border-radius: 20px;
}
.compare-center::before,
.compare-center::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.compare-center::before {
  top: 28px;
  width: 22px;
  height: 18px;
  background: linear-gradient(90deg, #f5f8fc 0%, #f5f8fc 40%, transparent 40%);
  clip-path: polygon(0 50%, 58% 50%, 58% 0, 100% 50%, 58% 100%, 58% 50%, 0 50%);
  box-shadow: 0 42px 0 #f5f8fc, 0 84px 0 #f5f8fc, 0 126px 0 #f5f8fc;
}
.compare-center::after {
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, #97abd9, rgba(151,171,217,0));
}
.compare-footer {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 28px;
  margin-top: 12px;
}
.stop-chip {
  position: absolute;
  right: 16px;
  bottom: 18px;
  padding: 10px 14px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  color: #586a4c;
  box-shadow: 0 14px 24px rgba(113, 142, 98, 0.16);
  font-size: 0.86rem;
  line-height: 1.25;
}

.engineer-illustration,
.portrait,
.blog-image,
.project-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.engineer-illustration {
  width: 124px;
  height: 124px;
  background-image: var(--img-engineer-a);
  background-size: cover;
  background-position: 76% center;
  background-repeat: no-repeat;
}
.engineer-illustration::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(39,60,112,0.06));
}
.engineer-illustration::after {
  content: "";
  position: absolute;
  inset: auto 12px 10px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0));
  filter: blur(6px);
}
.engineer-illustration--large {
  width: 290px;
  height: 240px;
  border-radius: 28px;
  background-image: var(--img-engineer-b);
  background-position: center top;
}

.info-strip {
  margin-top: 12px;
  padding: 15px 20px;
  text-align: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #f2a424, #dc7a16 58%, #b95a09 100%);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(216, 122, 19, 0.28);
}
.help-section { margin-top: 28px; }
.help-card {
  font-weight: 700;
  color: #f8fbff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 128px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 36px rgba(7, 16, 40, 0.18);
}
.help-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.help-card-icon::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  border: 3px solid #ffbc45;
}
.help-lower {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 22px;
  margin-top: 18px;
}
.metric-list { display: grid; gap: 14px; align-content: start; }
.metric-item {
  padding: 16px 18px 16px 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8,20,48,0.9), rgba(14,29,69,0.82));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 34px rgba(4, 10, 28, 0.28);
  position: relative;
  font-weight: 700;
  font-size: 1.02rem;
  color: #f8fbff;
}
.metric-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #081430;
  box-shadow: 0 0 0 4px rgba(8,20,48,0.16);
}
.highlight-card {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 18px;
  padding: 18px;
  align-items: end;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 36px rgba(7, 16, 40, 0.2);
}
.highlight-copy p { font-size: 0.94rem; line-height: 1.6; color: #f2f6ff; margin: 8px 0 12px; }
.highlight-copy strong,
.highlight-copy span { display: block; color: rgba(245,248,255,0.86); }
.process-section { margin-top: 26px; }
.process-grid {
  position: relative;
  align-items: start;
}
.process-grid--vertical {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}
.process-card {
  position: relative;
  min-height: 150px;
}
.process-grid--vertical .process-card {
  min-height: 0;
  padding: 24px 24px 28px;
}
.process-card:not(:last-child)::after {
  content: "»";
  position: absolute;
  right: -14px;
  top: 46px;
  color: #7c93c8;
  font-size: 2rem;
  font-weight: 700;
}
.process-grid--vertical .process-card:not(:last-child)::after {
  content: "";
  left: 50%;
  right: auto;
  top: auto;
  bottom: -22px;
  width: 2px;
  height: 26px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(104, 132, 197, 0.2), #7c93c8 60%, rgba(104, 132, 197, 0.15));
}
.process-grid--vertical .process-card:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%) rotate(45deg);
  background: #7c93c8;
  border-radius: 1px;
}
.process-grid--vertical .process-card h3,
.process-grid--vertical .process-card p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.process-number {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #355fb4;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}
.portrait--worker {
  min-height: 220px;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(45,73,132,0.14)),
    var(--img-engineer-a);
  background-size: cover;
  background-position: 72% center;
  background-repeat: no-repeat;
}
.portrait--worker::before {
  content: "";
  position: absolute;
  inset: auto 10px 10px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0));
  filter: blur(6px);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.logo-card {
  display: grid;
  place-items: center;
  min-height: 118px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(243,247,255,0.74));
  border: 1px solid rgba(125, 145, 190, 0.2);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.logo-card img {
  width: 100%;
  max-width: 160px;
  height: 58px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 16px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.service-card h3,
.project-content h3,
.blog-copy h3,
.testimonial-card h3,
.about-pillar h3,
.about-service-card h3,
.solution-card h3,
.audience-card h3,
.solution-flow h3 {
  letter-spacing: -0.02em;
}
.service-card h3 { margin: 0 0 8px; color: #365694; font-size: 1.03rem; }
.service-card p { margin: 0 0 10px; color: var(--muted); line-height: 1.5; font-size: 0.86rem; }
.service-card a { color: #5c78c1; font-weight: 700; }
.service-card a:hover,
.blog-copy a:hover,
.legal-links a:hover,
.footer-main a:hover { color: #274998; }

.section-team,
.section-support,
.section-services,
.section-logos,
.section-partner,
.section-blog,
.section-projects,
.section-testimonials { padding-top: 54px; padding-bottom: 54px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.section-testimonials {
  background:
    linear-gradient(180deg, rgba(20,38,84,0.86), rgba(69, 86, 132, 0.54)),
    radial-gradient(circle at 80% 86%, rgba(255,201,110,0.72), transparent 18%),
    var(--img-solar-c);
  background-size: cover;
  background-position: center 60%;
}
.testimonial-card { padding: 28px 24px; text-align: center; }
.testimonial-card p { min-height: 150px; line-height: 1.65; color: #455570; font-size: 0.98rem; }
.testimonial-card h3 { margin: 10px 0 6px; color: #38538e; }
.testimonial-card strong, .testimonial-card span { display: block; color: #5f6e90; }
.testimonial-card strong { font-size: 1.02rem; }
.satisfaction-box {
  width: min(760px, 100%);
  margin: 28px auto 0;
  padding: 22px 28px;
  text-align: center;
  background: rgba(255,255,255,0.86);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
}
.blog-featured { overflow: hidden; border-radius: 28px; }
.blog-featured,
.blog-mini { position: relative; }
.blog-image {
  min-height: 128px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(12,26,61,0.22)),
    var(--img-engineer-c);
  background-size: cover;
  background-position: center;
}
.blog-image--featured {
  min-height: 300px;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(12,26,61,0.22)),
    var(--img-engineer-c);
  background-size: cover;
  background-position: center 35%;
}
.blog-copy { padding: 22px; }
.blog-copy h3 { margin: 0 0 10px; color: #f7fbff; font-size: 1.22rem; line-height: 1.25; }
.blog-copy p { margin: 0 0 16px; color: rgba(245,248,255,0.82); line-height: 1.6; font-size: 0.92rem; }
.blog-copy a { font-weight: 700; }
.blog-stack { display: grid; gap: 18px; }
.blog-mini {
  display: grid;
  grid-template-columns: 132px 1fr;
  overflow: hidden;
  border-radius: 24px;
}

.projects-shell { max-width: 1020px; }
.project-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.project-filters button {
  border: 1px solid rgba(132, 153, 198, 0.24);
  background: rgba(255,255,255,0.78);
  color: #44577d;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  min-width: 84px;
  box-shadow: 0 10px 20px rgba(108, 131, 182, 0.1);
}
.project-filters button.is-active {
  color: #fff;
  background: linear-gradient(135deg, #3d74cd, #2d8cb0 52%, #56b365 100%);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-card {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(11,23,54,0.88), rgba(17,35,78,0.8));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 44px rgba(7, 16, 40, 0.26);
}
.project-card .btn-accent {
  min-width: 0;
  width: 100%;
  padding: 11px 14px;
  font-size: 0.84rem;
  border-radius: 14px;
}
.project-image {
  min-height: 190px;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(12,26,61,0.24)),
    var(--img-solar-a);
  background-size: cover;
  background-position: center;
}
.project-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(5,14,36,0.14));
}
.project-image--residential::after {
  content: none;
}
.project-image--residential { background-image: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(20,39,82,0.14)), var(--img-engineer-b); }
.project-image--commercial { background-image: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(20,39,82,0.14)), var(--img-solar-b); }
.project-image--ground-mount { background-image: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(20,39,82,0.14)), var(--img-solar-a); }
.project-image--carport { background-image: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(20,39,82,0.14)), var(--img-engineer-c); }
.project-content { padding: 18px; }
.project-content h3 { margin: 0 0 10px; font-size: 1.12rem; color: #f7fbff; min-height: 56px; line-height: 1.3; }
.project-content p { margin: 0 0 16px; color: rgba(245,248,255,0.82); min-height: 58px; }
.project-meta {
  position: relative;
  padding-left: 16px;
  font-size: 0.82rem;
  line-height: 1.55;
}
.project-meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f2a424;
  box-shadow: 0 14px 0 #f2a424, 0 28px 0 #f2a424;
}
.project-cta {
  margin-top: 24px;
  padding: 24px 28px;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(12,24,58,0.9), rgba(18,36,82,0.8));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 44px rgba(7, 16, 40, 0.24);
}
.project-cta h3 {
  margin: 0 0 8px;
  color: #f7fbff;
}
.project-cta p {
  margin: 0 0 16px;
  color: rgba(245,248,255,0.82);
}

.section-projects .project-cta {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,248,252,0.92));
  border: 1px solid rgba(122, 143, 184, 0.16);
  box-shadow: 0 24px 44px rgba(7, 16, 40, 0.18);
}

.section-projects .project-cta h3 {
  color: #193863;
}

.section-projects .project-cta p {
  color: #52627c;
}

.footer-cta {
  position: relative;
  padding: 42px 0 16px;
  background:
    radial-gradient(circle at top right, rgba(242,164,36,0.22), transparent 22%),
    radial-gradient(circle at bottom left, rgba(90,164,92,0.18), transparent 24%),
    linear-gradient(180deg, rgba(20,41,93,0.88), rgba(20,41,93,0.88)),
    var(--img-solar-c);
  background-size: cover;
  background-position: center 58%;
  overflow: hidden;
}
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.08), transparent 38%), repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 10px, transparent 10px 20px);
  pointer-events: none;
}
.cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: center;
  min-height: 238px;
}
.cta-copy {
  position: relative;
  z-index: 2;
  padding: 8px 0;
}
.cta-copy h2 { margin: 0 0 12px; color: #fff; font-size: clamp(2.1rem, 2.4vw, 2.65rem); line-height: 1.08; }
.cta-copy p { margin: 0 0 18px; color: rgba(255,255,255,.92); max-width: 460px; line-height: 1.7; font-size: 0.98rem; }
.cta-figure {
  position: relative;
  z-index: 2;
  justify-self: end;
}

.footer-main {
  background:
    linear-gradient(180deg, rgba(10,22,63,.9), rgba(5,14,42,.98)),
    radial-gradient(circle at 12% 16%, rgba(88,124,214,0.18), transparent 18%),
    linear-gradient(180deg, #1b3067, #0a173d 100%);
  color: #fff;
  padding-top: 30px;
}
.footer-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), transparent 30%, rgba(255,255,255,0.02));
  pointer-events: none;
}
.footer-main {
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 24px;
}
.footer-grid h3 {
  margin-top: 0;
  font-size: 1rem;
}
.brand--footer { color: #fff; }
.brand--footer .brand-text,
.brand--footer .brand-text::after {
  color: #fff;
}
.footer-main a {
  transition: color 160ms ease, transform 160ms ease;
}
.footer-main a:hover {
  color: #ffd46c;
  transform: translateX(2px);
}
.footer-tagline, .footer-main li, .footer-main p { color: rgba(255,255,255,.78); font-size: 0.88rem; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9) !important;
}
.footer-main ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-main li,
.footer-main p { line-height: 1.7; }
.footer-grid h3 {
  color: #fff;
  letter-spacing: 0.02em;
}
.social-links { display: flex; gap: 8px; margin-top: 18px; }
.social-links a, .whatsapp-chip {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
.whatsapp-chip {
  color: #fff;
}
.whatsapp-chip svg {
  width: 18px;
  height: 18px;
}
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #28d061, #1ea952);
  box-shadow: 0 18px 36px rgba(33, 143, 77, 0.34);
  border: 1px solid rgba(255,255,255,0.22);
}
.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 24px 42px rgba(33, 143, 77, 0.4);
}
.floating-whatsapp__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.18);
}
.floating-whatsapp__icon svg {
  width: 24px;
  height: 24px;
}
.social-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}
.social-icon::before,
.social-icon::after {
  content: "";
  position: absolute;
}
.social-icon--facebook::before {
  content: "f";
  inset: -1px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: lowercase;
}
.social-icon--x::before,
.social-icon--x::after {
  left: 7px;
  top: -1px;
  width: 2px;
  height: 18px;
  background: #fff;
  border-radius: 999px;
}
.social-icon--x::before { transform: rotate(45deg); }
.social-icon--x::after { transform: rotate(-45deg); }
.social-icon--linkedin::before {
  content: "in";
  inset: 1px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.social-icon--instagram {
  border: 2px solid #fff;
  border-radius: 5px;
}
.social-icon--instagram::before {
  left: 3px;
  top: 3px;
  width: 6px;
  height: 6px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.social-icon--instagram::after {
  right: 2px;
  top: 2px;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.map-card {
  margin-top: 14px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  display: block;
  position: relative;
  overflow: hidden;
}
.map-grid {
  min-height: 120px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(121,173,114,.25) 0 12%, transparent 12% 88%, rgba(121,173,114,.25) 88%),
    linear-gradient(0deg, rgba(121,173,114,.25) 0 12%, transparent 12% 88%, rgba(121,173,114,.25) 88%),
    repeating-linear-gradient(90deg, #e9edf5 0 18px, #d8e2ef 18px 20px),
    repeating-linear-gradient(0deg, #eef2f9 0 18px, #d7e2ef 18px 20px);
  position: relative;
}
.map-grid::after {
  content: "Varanasi";
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 6px 8px;
  border-radius: 8px;
  color: #d94e4e;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}
.map-card--interactive {
  border: 1px solid rgba(105, 132, 193, 0.18);
  box-shadow: 0 16px 32px rgba(53, 77, 131, 0.14);
}
.map-frame {
  display: block;
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 10px;
}
.legal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.72);
}
.legal-links { display: flex; align-items: center; gap: 18px; }

.inline-cta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 26px 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.inline-cta h2 {
  margin: 0 0 8px;
  color: #2d4f92;
}
.inline-cta p {
  margin: 0;
  color: #62718f;
}
.section-auth {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(244,247,252,0.7), rgba(244,247,252,0.7)), var(--img-solar-b);
  background-size: cover;
  background-position: center 52%;
}
.section-detail {
  min-height: 72vh;
  background: linear-gradient(180deg, rgba(244,247,252,0.72), rgba(244,247,252,0.72)), var(--img-solar-a);
  background-size: cover;
  background-position: center 46%;
}
.detail-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}
.detail-shell--single {
  max-width: 900px;
  grid-template-columns: 1fr;
}
.detail-hero,
.detail-card {
  border-radius: 28px;
  border: 1px solid rgba(122, 146, 199, 0.22);
  box-shadow: 0 24px 50px rgba(86, 108, 157, 0.16);
}
.detail-hero {
  padding: 38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(241,246,255,0.88)),
    linear-gradient(120deg, rgba(115,143,199,0.14), rgba(255,255,255,0));
}
.detail-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(56, 90, 157, 0.08);
  color: #365698;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.detail-hero h1 {
  margin: 18px 0 12px;
  color: #2d4d90;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}
.detail-hero p,
.detail-card p {
  color: #637390;
  line-height: 1.75;
  font-size: 0.98rem;
}
.detail-meta {
  margin-top: 14px;
  font-weight: 700;
  color: #486087;
}
.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.detail-card {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(242,247,255,0.9)),
    linear-gradient(120deg, rgba(115,143,199,0.14), rgba(255,255,255,0));
}
.detail-card h2 {
  margin: 0 0 14px;
  color: #2e4f92;
}
.detail-subtitle {
  margin: 28px 0 14px;
  color: #17326f;
  font-size: 1.08rem;
}
.detail-subservices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.detail-subservice-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(236,242,253,0.8);
  border: 1px solid rgba(115,143,199,0.16);
}
.detail-subservice-card h4 {
  margin: 0 0 8px;
  color: #2e4f92;
  font-size: 1rem;
}
.detail-subservice-card p {
  margin: 0;
  color: #556888;
  line-height: 1.6;
}
.detail-project-media {
  margin: 18px 0 20px;
}
.detail-project-media .project-image {
  min-height: 320px;
  border-radius: 22px;
}
.detail-list {
  display: grid;
  gap: 12px;
}
.detail-list-item {
  padding: 14px 16px 14px 44px;
  border-radius: 16px;
  background: rgba(236,242,253,0.8);
  border: 1px solid rgba(115,143,199,0.16);
  color: #556888;
  position: relative;
  line-height: 1.55;
}
.detail-list-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #b8e9a5 35%, #62b460 36%, #62b460 100%);
}
.detail-process-section {
  margin-top: 12px;
}
.detail-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}
.detail-process-card {
  min-height: 100%;
}
@media (max-width: 900px) {
  .detail-subservices-grid,
  .detail-process-grid {
    grid-template-columns: 1fr;
  }
}
.project-grid--preview {
  margin-top: 22px;
  grid-template-columns: repeat(4, 1fr);
}
.project-preview-actions {
  margin-top: 24px;
  text-align: center;
}
.section-project-preview {
  background: linear-gradient(180deg, rgba(10,22,52,0.72), rgba(10,22,52,0.72)), var(--img-solar-b);
  background-size: cover;
  background-position: center 54%;
}
.section-about-overview,
.section-about-services {
  background: linear-gradient(180deg, rgba(244,247,252,0.72), rgba(244,247,252,0.72)), var(--img-solar-a);
  background-size: cover;
  background-position: center 52%;
}
.section-about-summary {
  padding-top: 18px;
}
.detail-card--wide {
  max-width: 920px;
  margin: 0 auto;
}
.section-solutions-overview,
.section-solutions-flow,
.section-solutions-audience {
  background: linear-gradient(180deg, rgba(10,22,52,0.72), rgba(10,22,52,0.72)), var(--img-solar-b);
  background-size: cover;
  background-position: center 52%;
}
.solution-grid,
.audience-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}
.solution-grid {
  grid-template-columns: repeat(2, 1fr);
}
.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}
.solution-card,
.audience-card,
.solution-flow {
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(242,247,255,0.9));
  border: 1px solid rgba(122, 146, 199, 0.18);
  box-shadow: var(--shadow);
}
.solution-card h3,
.audience-card h3,
.solution-flow h3 {
  margin: 0 0 10px;
  color: #31508f;
}
.solution-card p,
.audience-card p,
.solution-flow p {
  margin: 0;
  color: #62718f;
  line-height: 1.7;
}
.solution-flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.solution-step {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #355fb4;
  color: #fff;
  font-weight: 800;
}
.about-pillars,
.about-service-list {
  display: grid;
  gap: 18px;
}
.about-pillars {
  grid-template-columns: repeat(3, 1fr);
}
.about-service-list {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}
.about-pillar,
.about-service-card {
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(242,247,255,0.88));
  border: 1px solid rgba(115,143,199,0.16);
  box-shadow: 0 18px 38px rgba(91, 112, 162, 0.14);
}
.about-pillar h3,
.about-service-card h3 {
  margin: 0 0 10px;
  color: #2f4f92;
}
.about-pillar p,
.about-service-card p {
  margin: 0;
  color: #60708f;
  line-height: 1.7;
}
.about-service-card a {
  display: inline-flex;
  margin-top: 14px;
  color: #31519a;
  font-weight: 700;
}
.auth-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.auth-showcase,
.auth-card {
  border-radius: 28px;
  border: 1px solid rgba(121, 146, 201, 0.22);
  box-shadow: 0 24px 50px rgba(86, 108, 157, 0.18);
  backdrop-filter: blur(10px);
}
.auth-showcase {
  position: relative;
  padding: 42px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18,38,88,0.8), rgba(45,72,129,0.56)),
    radial-gradient(circle at 82% 18%, rgba(255,205,117,0.48), transparent 18%),
    var(--img-engineer-b);
  background-size: cover;
  background-position: center 30%;
}
.auth-showcase::after {
  content: "";
  position: absolute;
  inset: auto -10% -12% auto;
  width: 58%;
  height: 48%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0)),
    repeating-linear-gradient(155deg, rgba(255,255,255,0.34) 0 2px, transparent 2px 16px),
    linear-gradient(180deg, #4369a2, #6a89be);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  transform: perspective(260px) rotateX(62deg);
  opacity: 0.86;
}
.auth-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.auth-showcase h1 {
  margin: 18px 0 14px;
  max-width: 520px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.14;
  text-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.auth-showcase p {
  max-width: 540px;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.94);
  font-size: 1rem;
  line-height: 1.7;
  text-shadow: 0 10px 24px rgba(0,0,0,0.16);
}
.auth-feature-list {
  display: grid;
  gap: 12px;
  max-width: 540px;
}
.auth-feature-item {
  padding: 14px 16px 14px 46px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  position: relative;
  font-weight: 600;
}
.auth-feature-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #b8e9a5 35%, #62b460 36%, #62b460 100%);
}
.auth-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.auth-stats article {
  padding: 18px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  text-align: center;
}
.auth-stats strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.auth-stats span {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 0.83rem;
  line-height: 1.4;
}
.auth-card {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(242,247,255,0.9)),
    linear-gradient(120deg, rgba(112,140,200,0.14), rgba(255,255,255,0));
}
.auth-card-header h2 {
  margin: 0 0 8px;
  color: #2f4f91;
  font-size: 2rem;
}
.auth-card-header p {
  margin: 0 0 22px;
  color: #687896;
}
.auth-form {
  display: grid;
  gap: 14px;
}
.auth-form label {
  display: grid;
  gap: 8px;
  color: #42567d;
  font-weight: 600;
}
.auth-form input,
.auth-form select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(126, 148, 195, 0.24);
  background: rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  font: inherit;
}
.auth-form input:focus,
.auth-form select:focus {
  outline: none;
  border-color: rgba(70, 103, 184, 0.55);
  box-shadow: 0 0 0 4px rgba(75, 109, 191, 0.12);
}
.auth-submit {
  width: 100%;
  margin-top: 6px;
}
.auth-footer-note {
  margin-top: 18px;
  text-align: center;
}
.auth-footer-note p {
  margin: 0 0 8px;
  color: #677792;
  font-size: 0.92rem;
}
.auth-footer-note a {
  color: #2d50a0;
  font-weight: 700;
}
.page-login .auth-showcase {
  background-image:
    linear-gradient(180deg, rgba(24,48,102,0.72), rgba(50,77,136,0.48)),
    radial-gradient(circle at 82% 18%, rgba(255,205,117,0.48), transparent 18%),
    var(--img-engineer-c);
}
.page-register .auth-showcase {
  background-image:
    linear-gradient(180deg, rgba(24,48,102,0.72), rgba(50,77,136,0.48)),
    radial-gradient(circle at 82% 18%, rgba(255,205,117,0.48), transparent 18%),
    var(--img-solar-a);
}
.page-company-login .auth-showcase {
  background-image:
    linear-gradient(180deg, rgba(24,48,102,0.72), rgba(50,77,136,0.48)),
    radial-gradient(circle at 82% 18%, rgba(255,205,117,0.48), transparent 18%),
    var(--img-engineer-b);
}
.team-card {
  min-height: 195px;
  text-align: left;
  border-top: 4px solid #4d72c8;
}
.team-card h3 { margin-bottom: 6px; }
.team-card strong {
  display: block;
  margin-bottom: 8px;
  color: #5f6f93;
  font-size: 0.86rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}
.contact-card { padding: 22px; }
.contact-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #44567d;
  font-weight: 600;
}
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(123, 147, 197, 0.24);
  background: rgba(255,255,255,0.92);
  font: inherit;
}
.faq-list { display: grid; gap: 18px; }
.faq-item { padding: 24px; }
.faq-item h2 { margin: 0 0 10px; color: #355693; }
.faq-item p { margin: 0; color: var(--muted); line-height: 1.7; }

@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-grid, .help-grid, .logo-strip, .project-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid, .testimonial-grid, .services-grid, .footer-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-pillars, .about-service-list { grid-template-columns: 1fr; }
  .help-lower, .highlight-card, .cta-shell, .blog-layout, .auth-shell, .detail-shell { grid-template-columns: 1fr; }
  .project-grid--preview { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 840px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    right: 14px;
    left: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(250,252,255,0.98);
    border: 1px solid rgba(123, 147, 197, 0.24);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-dropdown {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: start;
    gap: 10px;
  }
  .nav-dropdown > a {
    width: 100%;
    min-height: 46px;
    align-items: center;
  }
  .nav-dropdown-toggle {
    width: 46px;
    height: 46px;
  }
  .nav-submenu {
    position: static;
    grid-column: 1 / -1;
    min-width: 100%;
    max-width: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    margin-top: 2px;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    transition: max-height 220ms ease, margin-top 180ms ease, padding 180ms ease, opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }
  .nav-dropdown.is-open .nav-submenu {
    margin-top: 8px;
    max-height: 520px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding-top: 10px;
    padding-bottom: 10px;
    border-width: 1px;
  }
  .nav-quick-links {
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .header-cta { text-align: center; }
  .site-nav.is-open { display: flex; }
  .compare-board { grid-template-columns: 1fr; }
  .compare-center { min-height: 80px; }
  .compare-center::before { top: 24px; box-shadow: 42px 0 0 #f5f8fc, 84px 0 0 #f5f8fc, 126px 0 0 #f5f8fc; }
  .compare-center::after { width: auto; height: 4px; top: 40px; left: 24px; right: 24px; transform: none; }
  .compare-footer { flex-direction: column; }
  .stats-strip, .process-grid { grid-template-columns: 1fr; }
  .process-card:not(:last-child)::after { content: none; }
}

@media (max-width: 560px) {
  .brand-text { font-size: 1.3rem; }
  .brand-text::after { font-size: 0.48rem; letter-spacing: 0.08em; }
  .container { width: min(100% - 18px, 100%); }
  .hero-copy h1 { font-size: 1.92rem; }
  .flash-bar__inner { flex-direction: column; align-items: stretch; gap: 8px; }
  .flash-bar__inner a { align-self: flex-start; }
  .hero-highlights { gap: 8px; }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }
  .feature-grid,
  .partner-grid,
  .help-grid,
  .logo-strip,
  .project-grid,
  .solution-grid,
  .audience-grid,
  .solution-flow-list { grid-template-columns: 1fr; }
  .project-grid--preview { grid-template-columns: 1fr; }
  .service-card, .blog-mini { grid-template-columns: 1fr; }
  .hero-card { padding-bottom: 54px; }
  .legal-bar, .inline-cta { flex-direction: column; text-align: center; }
  .section-solar { padding: 34px 0; }
  .auth-showcase,
  .auth-card { padding: 22px; }
  .auth-stats { grid-template-columns: 1fr; }
  .detail-hero,
  .detail-card { padding: 22px; }
}

body {
  padding-bottom: 36px;
}

.hero-section {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-card {
  min-height: 360px;
  display: flex;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 52px;
}

.hero-copy {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.58), rgba(255,255,255,0.2));
  border-color: rgba(255,255,255,0.42);
}

.page-home .hero-section {
  min-height: 620px;
}

.page-home .hero-card {
  min-height: 470px;
  padding-top: 48px;
  padding-bottom: 72px;
}

.page-home .hero-copy {
  min-height: 340px;
}

body:not(.page-home) .hero-section {
  min-height: 400px;
  padding-top: 22px;
  padding-bottom: 18px;
}

body:not(.page-home) .hero-card {
  min-height: 250px;
  max-width: 1360px;
  padding-top: 18px;
  padding-bottom: 28px;
}

body:not(.page-home) .hero-copy {
  max-width: 1040px;
  min-height: 210px;
  padding: 26px 40px 22px;
  border-radius: 26px;
}

body:not(.page-home) .hero-copy h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

body:not(.page-home) .hero-copy p {
  margin-bottom: 16px;
  max-width: 860px;
}

body:not(.page-home) .hero-highlights {
  margin-bottom: 18px;
  max-width: 920px;
}

body:not(.page-home) .stats-shell {
  margin-top: -8px;
}

.section-solar > .container {
  border-radius: 30px;
}

.section-support > .container,
.section-services > .container,
.section-logos > .container,
.section-about-overview > .container,
.section-about-services > .container,
.section-detail > .container,
.section-contact > .container,
.section-faqs > .container {
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.52));
  padding: 28px;
  backdrop-filter: none;
}

.section-support > .container {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,250,253,0.84));
  border: 1px solid rgba(120, 140, 180, 0.16);
  box-shadow: 0 24px 48px rgba(60, 80, 120, 0.1);
  backdrop-filter: none;
}

.section-problems > .container {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,250,253,0.84));
  border: 1px solid rgba(120, 140, 180, 0.16);
  box-shadow: 0 24px 48px rgba(60, 80, 120, 0.1);
}

.section-support .section-title {
  color: #183764;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 0 rgba(255,255,255,0.48);
}

.section-support .feature-grid {
  margin-top: 24px;
  gap: 20px;
}

.section-support .feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,247,252,0.96));
  border: 1px solid rgba(120, 140, 180, 0.22);
  box-shadow: 0 18px 36px rgba(61, 83, 129, 0.14);
}

.section-support .feature-card h3 {
  color: #23467d;
}

.section-support .feature-card p {
  color: #4b5d7c;
  font-size: 0.84rem;
  line-height: 1.55;
}

.compare-board,
.highlight-card,
.inline-cta,
.solution-card,
.audience-card,
.solution-flow,
.about-pillar,
.about-service-card,
.detail-card,
.detail-hero,
.contact-card,
.faq-item,
.project-cta,
.satisfaction-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(242,246,252,0.9));
  border: 1px solid rgba(132, 149, 190, 0.22);
  box-shadow: 0 24px 54px rgba(58, 78, 121, 0.16);
}

.section-partner,
.section-blog,
.section-blog-index,
.section-solutions-flow {
  background-image: linear-gradient(180deg, rgba(10,22,52,0.7), rgba(10,22,52,0.7)), var(--img-solar-b);
  background-size: cover;
  background-position: center;
}

.section-partner .partner-card,
.section-project-preview .project-card,
.section-projects .project-card,
.section-solutions-overview .solution-card,
.section-solutions-flow .solution-flow,
.section-solutions-audience .audience-card {
  background: linear-gradient(180deg, rgba(12,24,58,0.82), rgba(18,36,82,0.74));
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 20px 40px rgba(5, 12, 32, 0.28);
}

.section-partner .section-title,
.section-blog .section-title,
.section-blog .section-heading h2,
.section-blog .section-heading p,
.section-blog .section-heading .eyebrow,
.section-blog-index .section-heading h2,
.section-blog-index .section-heading p,
.section-blog-index .section-heading .eyebrow,
.section-project-preview .section-title,
.section-project-preview .section-intro,
.section-solutions-flow .section-heading h2,
.section-solutions-flow .section-heading p,
.section-solutions-flow .section-heading .eyebrow,
.section-solutions-overview .section-heading h2,
.section-solutions-overview .section-heading p,
.section-solutions-overview .section-heading .eyebrow,
.section-solutions-audience .section-heading h2,
.section-solutions-audience .section-heading p,
.section-solutions-audience .section-heading .eyebrow,
.section-projects .section-title,
.section-projects .section-intro {
  color: #fff;
}

.section-partner .section-title,
.section-blog .section-heading h2,
.section-project-preview .section-heading h2,
.section-projects .section-heading h2 {
  color: #ffffff;
  text-shadow: 0 14px 28px rgba(2, 8, 22, 0.34);
}

.section-project-preview .section-heading h2,
.section-project-preview .section-heading p {
  color: #ffffff !important;
}

.section-partner .section-heading p,
.section-blog .section-heading p,
.section-project-preview .section-heading p,
.section-projects .section-heading p,
.section-projects .subcopy {
  color: rgba(245,248,255,0.84);
}

.section-partner .partner-card h3,
.section-project-preview .project-content h3,
.section-project-preview .project-content p,
.section-project-preview .project-meta,
.section-projects .project-content h3,
.section-projects .project-content p,
.section-projects .project-meta,
.section-solutions-overview .solution-card h3,
.section-solutions-overview .solution-card p,
.section-solutions-flow .solution-flow h3,
.section-solutions-flow .solution-flow p,
.section-solutions-audience .audience-card h3,
.section-solutions-audience .audience-card p {
  color: #f5f8ff;
}

.section-blog .blog-copy h3,
.section-blog .blog-copy p,
.section-blog .blog-copy a,
.section-blog-index .blog-copy h3,
.section-blog-index .blog-copy p,
.section-blog-index .blog-copy a {
  color: #f5f8ff;
}

.section-blog .blog-copy .btn,
.section-blog-index .blog-copy .btn {
  color: #ffffff !important;
  background: linear-gradient(135deg, #ffbc45, #f08c1b 58%, #dc6f12 100%) !important;
  border-color: rgba(255,255,255,0.12) !important;
}

.section-partner .section-heading p,
.section-partner .section-intro,
.section-blog .section-heading p,
.section-blog-index .section-heading p,
.section-solutions-overview .section-heading p,
.section-solutions-flow .section-heading p,
.section-solutions-audience .section-heading p,
.section-project-preview .section-intro,
.section-projects .section-intro {
  color: rgba(245,248,255,0.88);
}

.section-partner .help-card,
.section-partner .metric-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.08));
  color: #f5f8ff;
  border-color: rgba(255,255,255,0.12);
}

.section-partner .help-card-icon {
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
  border-color: rgba(255,255,255,0.14);
}

.section-partner .help-card-icon::before {
  border-color: #ffbc45;
}

.section-partner .metric-item::before,
.section-project-preview .project-meta::before,
.section-projects .project-meta::before {
  background: #ffbc45;
  box-shadow: none;
}

.section-partner .highlight-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border-color: rgba(255,255,255,0.12);
}

.section-partner .highlight-copy p,
.section-partner .highlight-copy strong,
.section-partner .highlight-copy span {
  color: #f5f8ff;
}

.section-support .section-heading h2,
.section-services .section-heading h2,
.section-logos .section-title,
.section-about-overview .section-heading h2,
.section-about-services .section-heading h2,
.section-detail .detail-card h2,
.section-contact .section-heading h2,
.section-faqs .section-heading h2 {
  color: #1e3760;
}

.section-support .section-heading p,
.section-services .section-heading p,
.section-logos .section-intro,
.section-about-overview .section-heading p,
.section-about-services .section-heading p,
.section-contact .section-heading p,
.section-faqs .section-heading p {
  color: #4a5b77;
}

.section-project-preview .section-title::after,
.section-projects .section-title::after,
.section-solutions-overview .section-heading h2::after,
.section-solutions-flow .section-heading h2::after,
.section-solutions-audience .section-heading h2::after {
  background: linear-gradient(90deg, rgba(255,188,69,0), #ffbc45 24%, #ffffff 76%, rgba(255,255,255,0));
}

.info-strip {
  background: linear-gradient(135deg, #f2a424, #dc7a16);
  color: #fff7e6;
  box-shadow: 0 18px 30px rgba(220, 122, 22, 0.28);
}

.header-cta,
.btn-primary,
.btn-accent,
.project-filters button.is-active {
  color: #fff !important;
  background: linear-gradient(135deg, #ffbc45, #f08c1b 58%, #dc6f12 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 18px 32px rgba(226, 128, 21, 0.3);
}

.btn-secondary {
  color: #7a4a08;
  border-color: rgba(240, 140, 27, 0.22);
  background: linear-gradient(180deg, rgba(255,250,243,0.98), rgba(255,240,220,0.92));
}

.nav-quick-link--strong,
.company-login-cta {
  background: linear-gradient(180deg, #ffd978, #eeb33a);
}

.btn,
.header-cta,
.company-login-cta,
.project-filters button,
.leadgen-minimize,
.leadgen-trigger {
  max-width: 100%;
  transition:
    transform 240ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 240ms cubic-bezier(.22, 1, .36, 1),
    background 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    opacity 240ms ease;
}

.btn:hover,
.header-cta:hover,
.company-login-cta:hover,
.project-filters button:hover,
.leadgen-minimize:hover,
.leadgen-trigger:hover {
  transform: translateY(-3px);
}

.btn:active,
.header-cta:active,
.company-login-cta:active,
.project-filters button:active,
.leadgen-minimize:active,
.leadgen-trigger:active {
  transform: translateY(-1px) scale(0.99);
}

.compare-column--solution {
  color: #5b4208;
  background: linear-gradient(180deg, rgba(255,250,242,0.98), rgba(255,237,210,0.96));
}

.compare-column--solution .compare-item {
  color: #6b5011;
  border-color: rgba(233, 164, 55, 0.26);
}

.compare-center {
  background: linear-gradient(180deg, rgba(255,191,73,0.12), rgba(255,255,255,0.08));
}

.compare-center::before {
  top: 24px;
  width: 28px;
  height: 22px;
  background: linear-gradient(90deg, #fff3dc 0%, #fff3dc 44%, transparent 44%);
  box-shadow: 0 54px 0 #fff3dc, 0 108px 0 #fff3dc, 0 162px 0 #fff3dc;
}

.compare-center::after {
  background: linear-gradient(180deg, rgba(240, 140, 27, 0.7), rgba(240, 140, 27, 0));
}

.solution-chip-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.stop-chip {
  position: static;
  flex: 1 1 auto;
  padding: 14px 18px;
  border-radius: 18px;
  text-align: left;
  color: #714608;
  background: linear-gradient(180deg, #fff9ee, #ffe9c7);
  border: 1px solid rgba(233, 164, 55, 0.3);
  box-shadow: 0 18px 28px rgba(211, 146, 45, 0.18);
  font-size: 0.95rem;
  font-weight: 700;
}

.engineer-illustration--compact {
  width: 112px;
  height: 112px;
  border-radius: 22px;
  flex: 0 0 112px;
  background-position: center 18%;
}

.compare-footer {
  margin-top: 22px;
}

.process-card {
  padding-top: 28px;
  padding-bottom: 28px;
}

.process-card:not(:last-child)::after {
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  color: #f2a424;
  font-size: 3.4rem;
  line-height: 1;
  text-shadow: 0 8px 18px rgba(58, 78, 121, 0.16);
}

.process-number,
.solution-step {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ffbc45, #eb8620);
  box-shadow: 0 14px 24px rgba(226, 128, 21, 0.24);
}

.footer-cta {
  background-image:
    linear-gradient(180deg, rgba(23,48,106,0.82), rgba(23,48,106,0.54)),
    radial-gradient(circle at 83% 44%, rgba(255,186,76,0.86), transparent 16%),
    radial-gradient(circle at 18% 28%, rgba(113,176,255,0.22), transparent 20%),
    var(--img-solar-c);
}

.cta-shell {
  grid-template-columns: 1fr 340px;
}

.blog-layout,
.blog-library {
  display: grid;
  gap: 20px;
}

.section-heading--blog .btn {
  margin-top: 10px;
}

.blog-library {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-library-card {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,246,252,0.92));
  border: 1px solid rgba(129, 149, 194, 0.2);
  box-shadow: 0 22px 46px rgba(58, 78, 121, 0.18);
}

.blog-library-card--featured {
  grid-column: span 2;
}

.blog-library-card .blog-copy {
  padding: 24px;
}

.blog-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(240, 140, 27, 0.12);
  color: #b96811;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leadgen-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: min(360px, calc(100% - 24px));
  padding: 0;
  background:
    linear-gradient(180deg, rgba(12,26,61,0.96), rgba(8,19,48,0.98)),
    radial-gradient(circle at 16% 20%, rgba(255,186,76,0.18), transparent 22%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 44px rgba(7, 16, 40, 0.35);
}
.leadgen-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255,255,255,0.08), transparent 32%), linear-gradient(90deg, rgba(242,164,36,0.08), transparent 48%, rgba(90,164,92,0.08));
  pointer-events: none;
}

.leadgen-shell {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 18px;
}

.site-notice {
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.site-notice--success {
  color: #154f2c;
  background: rgba(133, 206, 149, 0.18);
  border: 1px solid rgba(85, 164, 92, 0.3);
}

.site-notice--error {
  color: #7a1f1f;
  background: rgba(232, 131, 131, 0.14);
  border: 1px solid rgba(201, 81, 81, 0.24);
}

.leadgen-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.leadgen-minimize {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.leadgen-minimize span {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.leadgen-mini-label {
  display: none;
  align-self: center;
  color: #ffca74;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,188,69,0.14);
  border: 1px solid rgba(255,188,69,0.18);
  cursor: pointer;
  line-height: 1.25;
  text-align: center;
  word-break: break-word;
}

.leadgen-copy h2 {
  margin: 6px 0 0;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.leadgen-kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,188,69,0.14);
  color: #ffca74;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,188,69,0.18);
  cursor: pointer;
}

.leadgen-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
}

.leadgen-form label {
  display: block;
}

.leadgen-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.96);
  font: inherit;
  color: #314165;
}

.leadgen-form input:focus {
  outline: none;
  border-color: rgba(255,188,69,0.55);
  box-shadow: 0 0 0 4px rgba(255,188,69,0.14);
}

.leadgen-form .btn {
  width: 100%;
  min-width: 0;
}

.leadgen-bar.is-collapsed {
  width: min(210px, calc(100vw - 24px));
}

.leadgen-bar.is-collapsed .leadgen-shell {
  gap: 0;
  padding: 14px;
}

.leadgen-bar.is-collapsed .leadgen-head {
  align-items: center;
  justify-content: flex-start;
}

.leadgen-bar.is-collapsed .leadgen-copy {
  display: none;
}

.leadgen-bar.is-collapsed .leadgen-minimize {
  display: none;
}

.leadgen-bar.is-collapsed .leadgen-mini-label {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,188,69,0.18), rgba(255,141,27,0.14));
  max-width: 100%;
}

.leadgen-bar.is-collapsed .leadgen-copy h2 {
  font-size: 0.98rem;
}

.leadgen-bar.is-collapsed .leadgen-form {
  display: none;
}

@media (max-width: 1100px) {
  .cta-shell,
  .leadgen-shell,
  .blog-library {
    grid-template-columns: 1fr;
  }

  .blog-library-card--featured {
    grid-column: auto;
  }

}

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

  .hero-card {
    min-height: auto;
  }

  .solution-chip-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .engineer-illustration--compact {
    width: 100%;
    height: 180px;
    flex-basis: auto;
  }

  .leadgen-bar {
    right: 14px;
    bottom: 14px;
    width: min(340px, calc(100% - 20px));
  }

  .leadgen-bar.is-collapsed {
    width: min(220px, calc(100% - 20px));
  }
}

@media (max-width: 560px) {
  .hero-copy {
    min-height: auto;
    padding: 26px 18px 22px;
  }

  .leadgen-bar {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .leadgen-bar.is-collapsed {
    width: min(200px, calc(100% - 20px));
  }

  .leadgen-bar.is-collapsed .leadgen-shell {
    padding: 12px;
  }

  .leadgen-bar.is-collapsed .leadgen-mini-label {
    font-size: 0.72rem;
    max-width: 100%;
  }
}

@media (max-width: 1280px) {
  .container {
    width: min(100% - 32px, 1240px);
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-grid,
  .help-grid,
  .audience-grid,
  .about-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-flow-list,
  .about-pillars,
  .project-grid,
  .project-grid--preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 24px, 100%);
  }

  .header-inner {
    gap: 14px;
  }

  .site-nav {
    gap: 16px;
  }

  .hero-copy,
  body:not(.page-home) .hero-copy {
    max-width: 100%;
    padding-left: 28px;
    padding-right: 28px;
  }

  .stats-strip,
  .compare-board,
  .inline-cta,
  .project-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .compare-board,
  .detail-shell,
  .auth-shell,
  .contact-grid,
  .help-lower,
  .highlight-card,
  .cta-shell,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .compare-center {
    min-height: 90px;
  }

  .compare-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .compare-footer .btn {
    width: 100%;
  }

  .highlight-card,
  .cta-shell {
    gap: 20px;
  }

  .contact-card,
  .detail-card,
  .detail-hero,
  .auth-card,
  .auth-showcase {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 24px;
  }

  .brand-text {
    font-size: 1.28rem;
  }

  .brand-text::after {
    letter-spacing: 0.08em;
  }

  .section-solar {
    padding: 30px 0;
  }

  .section-heading,
  .section-intro {
    margin-bottom: 18px;
  }

  .hero-card,
  .page-home .hero-card,
  body:not(.page-home) .hero-card {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .hero-copy,
  .page-home .hero-copy,
  body:not(.page-home) .hero-copy {
    min-height: auto;
    padding: 24px 20px 20px;
    border-radius: 22px;
  }

  .hero-copy h1,
  body:not(.page-home) .hero-copy h1 {
    font-size: clamp(1.72rem, 7vw, 2.5rem);
    line-height: 1.12;
  }

  .hero-actions,
  .detail-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .detail-actions .btn,
  .inline-cta .btn {
    width: 100%;
  }

  .stats-strip,
  .process-grid,
  .solution-grid,
  .audience-grid,
  .about-pillars,
  .about-service-list,
  .testimonial-grid,
  .services-grid,
  .project-grid,
  .project-grid--preview,
  .logo-strip,
  .team-grid,
  .footer-grid,
  .auth-stats {
    grid-template-columns: 1fr;
  }

  .blog-library,
  .blog-library-card--featured,
  .blog-mini,
  .service-card {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .blog-image--featured,
  .project-image,
  .portrait--worker,
  .engineer-illustration--large {
    min-height: 220px;
    height: auto;
  }

  .process-card:not(:last-child)::after {
    content: none;
  }

  .solution-chip-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .engineer-illustration--compact {
    width: 100%;
    height: 180px;
  }

  .footer-main {
    padding-top: 24px;
  }

  .legal-bar,
  .inline-cta {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .leadgen-copy h2 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 16px, 100%);
  }

  .section-title,
  .section-heading h1,
  .section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .hero-badge,
  .hero-highlight,
  .detail-kicker,
  .leadgen-kicker {
    font-size: 0.68rem;
  }

  .compare-board,
  .contact-card,
  .detail-card,
  .detail-hero,
  .auth-card,
  .auth-showcase,
  .inline-cta,
  .project-cta,
  .blog-library-card {
    border-radius: 18px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .compare-column,
  .project-content,
  .blog-copy,
  .faq-item {
    padding: 16px;
  }

  .feature-card,
  .partner-card,
  .help-card,
  .process-card,
  .team-card,
  .solution-card,
  .audience-card,
  .solution-flow,
  .about-pillar,
  .about-service-card {
    padding: 18px 16px;
  }

  .testimonial-card p,
  .project-content p,
  .feature-card p {
    min-height: 0;
  }

  .leadgen-bar {
    border-radius: 18px;
  }

  .btn,
  .header-cta,
  .company-login-cta,
  .project-filters button {
    width: 100%;
    min-width: 0;
  }

  .leadgen-shell {
    padding: 14px;
  }

  .leadgen-head {
    gap: 10px;
    align-items: center;
  }

  .leadgen-minimize {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .leadgen-bar.is-collapsed .leadgen-head {
    justify-content: stretch;
  }
}

@media (max-width: 360px) {
  .brand {
    gap: 8px;
  }

  .brand-text {
    font-size: 1.08rem;
  }

  .brand-text::after {
    font-size: 0.42rem;
  }

  .hero-copy,
  .page-home .hero-copy,
  body:not(.page-home) .hero-copy,
  .detail-card,
  .detail-hero,
  .auth-card,
  .auth-showcase,
  .contact-card {
    padding: 18px 14px;
  }

  .leadgen-bar {
    right: 8px;
    bottom: 8px;
    width: calc(100% - 16px);
  }

  .leadgen-bar.is-collapsed {
    width: min(188px, calc(100% - 16px));
  }

  .leadgen-bar.is-collapsed .leadgen-mini-label {
    max-width: 100%;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }
}

/* Premium refinement layer */
:root {
  --navy-900: #08142f;
  --navy-800: #10224d;
  --navy-700: #183567;
  --slate-100: #f6f8fc;
  --slate-200: #e9eef7;
  --gold-500: #f2a424;
  --gold-600: #dc7a16;
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(255,193,90,0.12), transparent 18%),
    radial-gradient(circle at 84% 6%, rgba(91,128,201,0.1), transparent 18%),
    linear-gradient(180deg, #f8fafc 0%, #eef3fa 42%, #ecf1f7 100%);
}

.site-header {
  background: rgba(250, 252, 255, 0.84);
  border-bottom: 1px solid rgba(92, 112, 154, 0.12);
  box-shadow: 0 16px 38px rgba(33, 52, 96, 0.08);
}

.brand {
  color: var(--navy-800);
}

.brand-text::after {
  color: #7e8aa5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(242, 164, 36, 0.12);
  color: #b56410;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffcf67, #f2a424);
  box-shadow: 0 0 0 4px rgba(242,164,36,0.12);
}

.page-home .section-solar > .container {
  padding: 32px;
  border: 1px solid rgba(113, 133, 173, 0.14);
  box-shadow: 0 24px 54px rgba(27, 45, 86, 0.08);
}

.page-home .section-partner > .container,
.page-home .section-project-preview > .container,
.page-home .section-blog > .container,
.page-home .section-testimonials > .container {
  background: linear-gradient(180deg, rgba(8,20,47,0.86), rgba(15,32,72,0.78));
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 28px 64px rgba(4, 12, 32, 0.22);
}

.page-home .section-partner .section-title,
.page-home .section-project-preview .section-heading h2,
.page-home .section-blog .section-heading h2,
.page-home .section-testimonials .section-heading h2 {
  color: #f8fbff !important;
}

.page-home .section-partner .section-heading p,
.page-home .section-project-preview .section-heading p,
.page-home .section-blog .section-heading p,
.page-home .section-testimonials .section-heading p,
.page-home .section-projects .subcopy {
  color: rgba(245,248,255,0.8) !important;
}

.section-testimonials > .container {
  background: linear-gradient(180deg, rgba(8,20,47,0.86), rgba(15,32,72,0.78));
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 28px 64px rgba(4, 12, 32, 0.22);
}

.section-testimonials .section-heading h2 {
  color: #f8fbff !important;
}

.section-testimonials .section-heading p {
  color: rgba(245,248,255,0.8) !important;
}

.hero-copy {
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247,250,255,0.72)),
    linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
  box-shadow: 0 28px 64px rgba(14, 33, 74, 0.22);
}

.hero-badge,
.hero-highlight {
  background: rgba(255,255,255,0.88);
}

.stats-strip {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(245,248,252,0.84));
}

.stat-item {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(248,250,255,0.9), rgba(241,245,252,0.82));
}

.feature-card,
.service-card,
.team-card,
.testimonial-card,
.logo-card {
  border-radius: 22px;
}

.feature-card,
.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,247,252,0.94));
  border-color: rgba(116, 137, 179, 0.18);
  box-shadow: 0 18px 38px rgba(34, 53, 94, 0.12);
}

.feature-card h3,
.service-card h3,
.team-card h3,
.testimonial-card h3 {
  color: var(--navy-700);
}

.service-card a {
  color: #ef8b1d;
}

.logo-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,248,252,0.88));
  color: var(--navy-700);
  border-color: rgba(122, 143, 184, 0.16);
}

.team-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,247,252,0.9));
  border: 1px solid rgba(114, 136, 177, 0.14);
  border-top: 4px solid #f2a424;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,248,252,0.88));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 42px rgba(6, 14, 34, 0.2);
}

.testimonial-card p,
.testimonial-card h3,
.testimonial-card strong,
.testimonial-card span {
  color: #183567;
}

.project-filters button {
  background: rgba(255,255,255,0.92);
  border-color: rgba(122, 143, 184, 0.16);
}

.project-filters button:not(.is-active):hover {
  color: var(--navy-700);
  background: rgba(255,255,255,0.98);
}

.btn-secondary {
  color: #7b4810;
  background: linear-gradient(180deg, rgba(255,248,238,0.98), rgba(255,239,214,0.94));
  border-color: rgba(240,140,27,0.2);
}

.footer-main {
  background:
    radial-gradient(circle at 20% 8%, rgba(255,188,69,0.1), transparent 18%),
    linear-gradient(180deg, #0d1d47 0%, #08142f 100%);
}

@media (max-width: 768px) {
  .page-home .section-solar > .container {
    padding: 22px;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .section-support {
    background-position: center 42%;
  }

  .section-logos,
  .section-services,
  .section-blog,
  .section-problems {
    background-position: center center;
  }
}

/* Final high-specificity overrides for dark showcase sections */
.section-partner .partner-card,
.section-blog .blog-featured,
.section-blog .blog-mini,
.section-project-preview .project-card {
  background: linear-gradient(180deg, rgba(9,20,48,0.92), rgba(16,33,76,0.84)) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 24px 44px rgba(4, 10, 28, 0.3) !important;
}

.section-blog .blog-featured::after,
.section-blog .blog-mini::after,
.section-project-preview .project-card::after,
.section-partner .partner-card::after {
  display: none !important;
}

.section-blog .blog-copy,
.section-project-preview .project-content,
.section-partner .partner-card {
  position: relative;
  z-index: 1;
}

.section-blog .blog-copy h3,
.section-blog .blog-copy p,
.section-blog .blog-copy a,
.section-project-preview .project-content h3,
.section-project-preview .project-content p,
.section-project-preview .project-content .project-meta,
.section-partner .partner-card h3,
.section-partner .partner-card p {
  color: #f8fbff !important;
}

.section-blog .blog-copy p,
.section-project-preview .project-content p,
.section-project-preview .project-meta,
.section-partner .partner-card p {
  opacity: 0.92;
}

.section-blog-index .blog-library-card {
  background: linear-gradient(180deg, rgba(11,23,54,0.94), rgba(17,35,78,0.88)) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 24px 44px rgba(4, 10, 28, 0.3) !important;
}

.section-blog-index .blog-library-card .blog-copy h3,
.section-blog-index .blog-library-card .blog-copy p,
.section-blog-index .blog-library-card .blog-copy a {
  color: #f8fbff !important;
  opacity: 1 !important;
}

.section-blog-index .blog-library-card .blog-copy p {
  color: rgba(245,248,255,0.84) !important;
}

.section-blog-index .blog-library-card::after {
  display: none !important;
}

.section-blog .blog-image,
.section-project-preview .project-image {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.section-blog .blog-featured .blog-image--featured {
  min-height: 290px;
}

.section-blog .blog-mini {
  align-items: stretch;
}

.section-blog .blog-mini .blog-image {
  min-height: 100%;
}

.section-project-preview .project-grid {
  gap: 24px;
}

.section-project-preview .project-content {
  padding: 20px;
}

.section-project-preview .project-content h3 {
  min-height: 62px;
  font-size: 1.16rem;
}

.section-project-preview .project-card .btn-accent {
  margin-top: 8px;
}

.section-partner .partner-grid {
  gap: 20px;
}

.section-partner .partner-card {
  padding: 24px 20px;
  text-align: left;
}

.section-partner .partner-card .icon {
  margin-bottom: 14px;
}

.section-partner .partner-card h3 {
  font-size: 1.08rem;
}

.section-partner .partner-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Screenshot-matched icon overrides */
.icon::before,
.service-icon::before,
.stat-icon,
.trust-badge,
.help-card-icon::before,
.metric-item::before,
.compare-item::before,
.process-card::before,
.feature-card::before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon::before,
.service-icon::before {
  inset: 8px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}

.icon::after,
.service-icon::after {
  content: none;
}

.feature-card::before {
  background-color: #6ca453;
  background-image: url("../icons/check-dot.svg");
  background-size: 10px 10px;
}

.icon-folder::before { background-image: url("../icons/folder-check.svg"); }

.icon-grid::before,
.icon-tower::before,
.icon-utility::before { background-image: url("../icons/utility-tower.svg"); }

.icon-shield::before,
.icon-approval::before { background-image: url("../icons/shield-check.svg"); }

.icon-code::before,
.icon-software::before { background-image: url("../icons/monitor-check.svg"); }

.icon-team::before,
.icon-staffing::before { background-image: url("../icons/team.svg"); }

.icon-clock::before,
.compare-column--solution .compare-item:nth-child(4)::before { background-image: url("../icons/turnaround.svg"); }

.icon-check::before { background-image: url("../icons/document-check.svg"); }

.icon-badge::before,
.icon-finance::before { background-image: url("../icons/finance-badge.svg"); }

.icon-bolt::before,
.icon-electrical::before { background-image: url("../icons/lightning.svg"); }

.icon-panel::before { background-image: url("../icons/solar-panel-check.svg"); }

.icon-regulatory::before { background-image: url("../icons/permit-regulatory.svg"); }

.stat-item:nth-child(1) .stat-icon {
  background-image: url("../icons/badge-green.svg");
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}

.stat-item:nth-child(2) .stat-icon {
  background-image: url("../icons/badge-amber.svg");
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}

.stat-item:nth-child(3) .stat-icon {
  background-image: url("../icons/badge-box.svg");
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}

.trust-badge {
  background-image: url("../icons/badge-green.svg");
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}

.compare-item {
  padding-left: 48px;
}

.compare-item::before {
  width: 20px;
  height: 20px;
  left: 12px;
  border-radius: 0;
  transform: translateY(-50%);
  background-color: transparent;
  box-shadow: none;
}

.compare-column--problem .compare-item:nth-child(1)::before { background-image: url("../icons/problem-clock.svg"); }

.compare-column--problem .compare-item:nth-child(2)::before { background-image: url("../icons/problem-user.svg"); }

.compare-column--problem .compare-item:nth-child(3)::before { background-image: url("../icons/problem-tower.svg"); }

.compare-column--problem .compare-item:nth-child(4)::before { background-image: url("../icons/problem-dollar.svg"); }

.compare-column--solution .compare-item:nth-child(1)::before { background-image: url("../icons/shield-check.svg"); }

.compare-column--solution .compare-item:nth-child(2)::before { background-image: url("../icons/team.svg"); }

.compare-column--solution .compare-item:nth-child(3)::before { background-image: url("../icons/utility-tower.svg"); }

.help-card-icon {
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
}

.help-card-icon::before {
  inset: 8px;
  border: 0;
  border-radius: 0;
}

.help-card:nth-child(1) .help-card-icon::before { background-image: url("../icons/help-epc.svg"); }

.help-card:nth-child(2) .help-card-icon::before { background-image: url("../icons/help-sun.svg"); }

.help-card:nth-child(3) .help-card-icon::before { background-image: url("../icons/help-gear.svg"); }

.help-card:nth-child(4) .help-card-icon::before { background-image: url("../icons/help-clipboard.svg"); }

.metric-item {
  padding-left: 58px;
}

.metric-item::before {
  width: 24px;
  height: 24px;
  left: 18px;
  border-radius: 0;
  transform: translateY(-50%);
}

.metric-item:nth-child(1)::before { background-image: url("../icons/metric-hardhat.svg"); }

.metric-item:nth-child(2)::before { background-image: url("../icons/metric-document.svg"); }

.metric-item:nth-child(3)::before { background-image: url("../icons/metric-map.svg"); }

.process-card {
  padding-top: 70px;
}

.process-grid--vertical .process-card {
  padding-top: 24px;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 34px;
  height: 34px;
  transform: translateX(-50%);
}

.process-grid--vertical .process-card::before {
  content: none;
}

.process-card:nth-child(1)::before { background-image: url("../icons/process-pin.svg"); }

.process-card:nth-child(2)::before { background-image: url("../icons/process-gear.svg"); }

.process-card:nth-child(3)::before { background-image: url("../icons/process-shield.svg"); }

/* Direct image icon rendering */
.icon--image::before,
.icon--image::after,
.service-icon.icon--image::before,
.service-icon.icon--image::after,
.stat-icon--image::before,
.stat-icon--image::after,
.trust-badge--image::before,
.trust-badge--image::after,
.help-card-icon--image::before,
.help-card-icon--image::after,
.compare-item::before,
.process-card::before,
.metric-item::before {
  content: none;
}

.icon--image img,
.service-icon.icon--image img {
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: auto;
  filter: drop-shadow(0 3px 6px rgba(77, 112, 191, 0.12));
}

.stat-icon--image,
.trust-badge--image {
  display: inline-grid;
  place-items: center;
}

.stat-icon--image img,
.trust-badge--image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.help-card-icon--image {
  display: inline-grid;
  place-items: center;
  margin-inline: auto;
}

.help-card-icon--image img {
  width: auto;
  height: auto;
  max-width: 68%;
  max-height: 68%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: auto;
  filter: drop-shadow(0 2px 5px rgba(77, 112, 191, 0.12));
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 16px;
}

.compare-item-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 24px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(77, 112, 191, 0.1));
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 18px;
}

.metric-item-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 26px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(77, 112, 191, 0.1));
}

.process-card {
  padding-top: 28px;
}

.process-card-icon {
  width: auto;
  height: auto;
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 3px 6px rgba(77, 112, 191, 0.12));
}

.feature-card .icon,
.partner-card .icon,
.service-card .service-icon {
  justify-self: center;
  align-self: center;
}

.feature-card .icon,
.partner-card .icon,
.help-card .help-card-icon {
  margin-inline: auto;
}

.service-card .service-icon {
  margin-inline: auto;
}

.service-media {
  width: 92px;
  height: 92px;
  margin: 0 auto 12px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(56,90,157,0.14);
  box-shadow: 0 18px 34px rgba(49,73,126,0.16);
}

.service-media img,
.team-avatar,
.testimonial-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-avatar,
.testimonial-avatar {
  width: 82px;
  height: 82px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.92);
  box-shadow: 0 18px 32px rgba(48,72,126,0.18);
}

@media (max-width: 768px) {
  .icon,
  .service-icon {
    width: 50px;
    height: 50px;
  }

  .icon--image img,
  .service-icon.icon--image img {
    max-width: 76%;
    max-height: 76%;
  }

  .help-card-icon--image img {
    max-width: 64%;
    max-height: 64%;
  }

  .compare-item-icon,
  .metric-item-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .process-card-icon {
    width: 34px;
    height: 34px;
  }
}

.hero-copy {
  max-width: 820px;
}

.hero-actions {
  margin-bottom: 16px;
}

.hero-contact-rail {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-contact-rail a {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(100, 129, 184, 0.24);
  color: #2a467b;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.hero-proof-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(246, 249, 255, 0.78);
  border: 1px solid rgba(110, 137, 191, 0.2);
  text-align: left;
  box-shadow: 0 14px 28px rgba(61, 85, 141, 0.08);
}

.hero-proof-icon {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  flex: 0 0 10px;
  background: linear-gradient(180deg, #69b66c, #4f9951);
  box-shadow: 0 0 0 4px rgba(100, 171, 103, 0.12);
}

.hero-proof-item span:last-child {
  color: #324969;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.trust-chip {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(8, 20, 47, 0.08);
  border: 1px solid rgba(92, 117, 171, 0.16);
  color: #24457d;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-quick-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-cta-actions,
.contact-info-actions,
.contact-form-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-form-span-2 {
  grid-column: 1 / -1;
}

.contact-form-footer {
  justify-content: space-between;
  margin-top: 10px;
}

.contact-form-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  max-width: 420px;
}

.contact-card input,
.contact-card select,
.contact-card textarea,
.leadgen-form input,
.leadgen-form select {
  width: 100%;
}

.contact-card select,
.leadgen-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #3c5c99 50%), linear-gradient(135deg, #3c5c99 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.site-notice {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.site-notice--success {
  background: rgba(93, 178, 97, 0.14);
  border: 1px solid rgba(93, 178, 97, 0.24);
  color: #2f6b39;
}

.site-notice--error {
  background: rgba(214, 72, 72, 0.1);
  border: 1px solid rgba(214, 72, 72, 0.2);
  color: #8a2e2e;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.legal-card h1 {
  margin-top: 0;
  color: #17326f;
}

.legal-card h2 {
  margin-top: 24px;
  color: #274998;
}

.legal-card p {
  color: #43536f;
}

@media (max-width: 1024px) {
  .hero-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-contact-rail,
  .trust-badges,
  .footer-cta-actions,
  .contact-info-actions,
  .contact-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form-footer p {
    max-width: none;
  }

  .leadgen-form,
  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-item {
    padding: 12px 14px;
  }
}



/* Non-home hero refinement */
body:not(.page-home) .hero-section {
  min-height: 340px;
  padding-top: 12px;
  padding-bottom: 10px;
}

body:not(.page-home) .hero-section > .hero-card {
  width: min(1320px, calc(100% - 28px));
}

body:not(.page-home) .hero-card {
  min-height: 0;
  padding-top: 10px;
  padding-bottom: 18px;
}

body:not(.page-home) .hero-copy {
  max-width: 1180px;
  min-height: 0;
  padding: 22px 48px 18px;
}

body:not(.page-home) .hero-copy h1 {
  margin-bottom: 10px;
  font-size: clamp(1.95rem, 3vw, 2.8rem);
}

body:not(.page-home) .hero-copy p {
  margin-bottom: 14px;
  max-width: 980px;
  font-size: 0.95rem;
}

body:not(.page-home) .hero-highlights {
  gap: 8px;
  margin-bottom: 14px;
  max-width: 980px;
}

body:not(.page-home) .hero-highlight {
  padding: 8px 12px;
  font-size: 0.78rem;
}

body:not(.page-home) .hero-actions {
  gap: 12px;
}

body:not(.page-home) .hero-contact-rail {
  margin-top: 14px;
  gap: 10px;
}

body:not(.page-home) .hero-proof-grid {
  gap: 10px;
  margin-top: 14px;
}

body:not(.page-home) .hero-proof-item {
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(19,52,107,0.08), rgba(255,255,255,0.9));
  border: 1px solid rgba(49,90,171,0.22);
}

body:not(.page-home) .hero-proof-icon {
  background: linear-gradient(180deg, #f4b33c, #da8c16);
  box-shadow: 0 0 0 4px rgba(242,164,36,0.18);
}

body:not(.page-home) .hero-proof-item span:last-child {
  color: #18345e;
}

body:not(.page-home) .stats-shell {
  margin-top: -2px;
}

body:not(.page-home) .trust-chip {
  background: linear-gradient(135deg, rgba(28,63,125,0.96), rgba(45,126,179,0.92) 58%, rgba(86,179,101,0.92));
  border-color: rgba(255,255,255,0.18);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(25,58,116,0.18);
}

@media (max-width: 768px) {
  body:not(.page-home) .hero-section > .hero-card {
    width: min(100% - 18px, 100%);
  }

  body:not(.page-home) .hero-section {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  body:not(.page-home) .hero-copy {
    padding: 20px 18px 18px;
    border-radius: 22px;
  }

  body:not(.page-home) .hero-proof-grid {
    grid-template-columns: 1fr;
  }
}
/* Non-home hero compact cleanup */
body:not(.page-home) .hero-section {
  min-height: 300px;
  padding-top: 8px;
  padding-bottom: 6px;
}

body:not(.page-home) .hero-section > .hero-card {
  width: min(1360px, calc(100% - 28px));
}

body:not(.page-home) .hero-card {
  padding-top: 6px;
  padding-bottom: 12px;
}

body:not(.page-home) .hero-copy {
  max-width: 1220px;
  padding: 18px 48px 16px;
}

body:not(.page-home) .hero-copy h1 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
}

body:not(.page-home) .hero-copy p {
  margin-bottom: 12px;
  max-width: 1000px;
}

body:not(.page-home) .hero-highlights {
  margin-bottom: 12px;
}

body:not(.page-home) .hero-contact-rail,
body:not(.page-home) .hero-proof-grid,
body:not(.page-home) .trust-badges {
  display: none;
}

body:not(.page-home) .stats-shell {
  margin-top: 2px;
}

.stats-strip {
  align-items: stretch;
}

.stat-item {
  align-items: flex-start;
  height: 100%;
  padding: 14px 16px;
}

.stat-item > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 74px;
}

.stat-item h3 {
  min-height: 2.5em;
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  color: #334f84;
}

.stat-item p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.55;
  color: #546887;
}

@media (max-width: 768px) {
  body:not(.page-home) .hero-section > .hero-card {
    width: min(100% - 18px, 100%);
  }

  body:not(.page-home) .hero-copy {
    padding: 18px 18px 16px;
  }

  .stat-item > div {
    min-height: auto;
  }

  .stat-item h3 {
    min-height: auto;
  }
}

.collection-empty,
.detail-empty {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px dashed rgba(56, 90, 157, 0.22);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(237,242,251,0.88));
  text-align: center;
}

.collection-empty h3,
.detail-empty h2 {
  margin: 0;
  color: #27427b;
}

.collection-empty p,
.detail-empty p {
  margin: 0;
  color: var(--muted);
}

.collection-empty .btn,
.detail-empty .btn {
  justify-self: center;
}

/* Homepage layout refresh */
.page-home .section-problems .compare-column h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-home .section-problems .compare-heading-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

.page-home .section-problems .compare-heading-icon--problem {
  color: #f25c54;
  background: rgba(242, 92, 84, 0.14);
  border: 1px solid rgba(242, 92, 84, 0.22);
}

.page-home .section-problems .compare-heading-icon--solution {
  color: #239a4a;
  background: rgba(35, 154, 74, 0.14);
  border: 1px solid rgba(35, 154, 74, 0.2);
}

.page-home .section-problems .compare-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}

.page-home .section-problems .compare-item::before {
  content: none;
}

.page-home .section-problems .compare-item-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin: 0;
}

.page-home .section-problems .compare-column--solution .compare-item-icon {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  filter: brightness(0) saturate(100%) invert(39%) sepia(87%) saturate(702%) hue-rotate(91deg) brightness(93%) contrast(91%) drop-shadow(0 4px 8px rgba(35, 154, 74, 0.18));
}

.page-home .section-problems .compare-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .section-problems .compare-center::before {
  content: "➜";
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  background: none;
  color: #f2a424;
  font-size: 3.4rem;
  font-weight: 900;
  text-shadow: 0 12px 24px rgba(242, 164, 36, 0.22);
  box-shadow: none;
}

.page-home .section-problems .compare-center::after {
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: linear-gradient(180deg, rgba(242,164,36,0.18), rgba(242,164,36,0.82), rgba(242,164,36,0.18));
}

.page-home .section-problems .solution-chip-wrap {
  margin-top: 22px;
}

.page-home .section-problems .stop-chip--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #26a84c, #167d37);
  border: 1px solid rgba(20, 113, 49, 0.24);
  box-shadow: 0 18px 32px rgba(23, 123, 54, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .section-problems .stop-chip--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(211, 146, 45, 0.24);
}

.page-home .section-partner .section-title,
.page-home .section-partner .section-intro {
  text-align: center;
}

.page-home .section-partner .section-intro {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.page-home .process-grid--home-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.page-home .process-card--home-flow {
  min-height: 100%;
  padding: 26px 20px 24px;
}

.page-home .process-card--home-flow::before {
  content: none;
}

.page-home .process-card--home-flow .process-card-icon {
  max-width: 44px;
  max-height: 44px;
}

.page-home .process-card--home-flow:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -18px;
  left: auto;
  bottom: auto;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  background: none;
  color: #f2a424;
  font-size: 2.2rem;
  font-weight: 900;
  z-index: 2;
  text-shadow: 0 10px 18px rgba(8, 20, 47, 0.18);
}

.proof-slider-shell {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.proof-slider-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 2px 14px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.proof-slider-track::-webkit-scrollbar {
  display: none;
}

.slider-arrow {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #f6b33a, #ea861f);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(242, 164, 36, 0.24);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slider-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(242, 164, 36, 0.3);
}

.testimonial-card--slider,
.logo-card--slider {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.testimonial-card--slider {
  width: min(340px, 82vw);
}

.testimonial-card--slider p {
  min-height: 140px;
}

.page-home .logo-card--slider {
  width: min(220px, 58vw);
  min-height: 160px;
}

.page-home .proof-slider-shell--logos {
  margin-top: 24px;
}

.page-home .section-intro--slider {
  margin-top: 10px;
  text-align: center;
  color: rgba(245, 248, 255, 0.82);
}

.nav-dropdown > a::after {
  content: none;
}

@media (max-width: 1100px) {
  .page-home .process-grid--home-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .process-card--home-flow:nth-child(2)::after {
    content: none;
  }
}

@media (max-width: 768px) {
  .proof-slider-shell {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 10px;
  }

  .slider-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .page-home .process-grid--home-flow {
    grid-template-columns: 1fr;
  }

  .page-home .process-card--home-flow:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: 50%;
    bottom: -18px;
    transform: translateX(50%);
  }

  .page-home .section-problems .compare-item-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .page-home .section-problems .compare-column--solution .compare-item-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .page-home .section-problems .compare-center::before {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .feature-grid,
  .help-grid,
  .services-grid,
  .project-grid,
  .project-grid--preview,
  .about-service-list,
  .solution-grid,
  .audience-grid,
  .team-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 14px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .feature-grid::-webkit-scrollbar,
  .help-grid::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar,
  .project-grid::-webkit-scrollbar,
  .project-grid--preview::-webkit-scrollbar,
  .about-service-list::-webkit-scrollbar,
  .solution-grid::-webkit-scrollbar,
  .audience-grid::-webkit-scrollbar,
  .team-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-grid > *,
  .help-grid > *,
  .services-grid > *,
  .project-grid > *,
  .project-grid--preview > *,
  .about-service-list > *,
  .solution-grid > *,
  .audience-grid > *,
  .team-grid > * {
    flex: 0 0 calc(100% - 8px);
    min-width: calc(100% - 8px);
    scroll-snap-align: start;
  }

  .feature-card,
  .help-card,
  .service-card,
  .project-card,
  .about-service-card,
  .solution-card,
  .audience-card,
  .team-card {
    min-height: 100%;
  }

  .feature-card h3,
  .project-content h3,
  .project-content p,
  .testimonial-card p {
    min-height: 0;
  }

  .service-card {
    align-items: start;
  }

  .project-card,
  .project-grid > .collection-empty,
  .project-grid--preview > .collection-empty {
    width: calc(100% - 8px);
  }
}

@media (max-width: 768px) {
  .proof-slider-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
  }

  .proof-slider-track {
    grid-column: 1 / -1;
    width: 100%;
    padding: 8px 0 10px;
  }

  .slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto;
    font-size: 1.15rem;
  }

  .slider-arrow--prev {
    grid-column: 1;
  }

  .slider-arrow--next {
    grid-column: 2;
  }

  .testimonial-card--slider {
    width: calc(100vw - 32px);
    max-width: 100%;
  }

  .page-home .logo-card--slider {
    width: min(72vw, 220px);
  }

  .feature-grid,
  .help-grid,
  .services-grid,
  .project-grid,
  .project-grid--preview,
  .about-service-list,
  .solution-grid,
  .audience-grid,
  .team-grid {
    display: grid;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
    scrollbar-width: auto;
  }

  .feature-grid,
  .help-grid,
  .services-grid,
  .project-grid,
  .project-grid--preview,
  .about-service-list,
  .solution-grid,
  .audience-grid,
  .team-grid,
  .footer-grid,
  .auth-stats {
    grid-template-columns: 1fr;
  }

  .feature-grid > *,
  .help-grid > *,
  .services-grid > *,
  .project-grid > *,
  .project-grid--preview > *,
  .about-service-list > *,
  .solution-grid > *,
  .audience-grid > *,
  .team-grid > * {
    min-width: 0;
    width: auto;
  }
}
