.elec-holding-page,
.elec-page {
  --elec-canvas: #fffcf7;
  --elec-ink: #0d0129;
  --elec-teal: #19615c;
  --elec-yellow: #fae59b;
  --elec-white: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 82px);
  color: var(--elec-ink);
  background: var(--elec-canvas);
  font-family: var(--font-ui);
}

.elec-blueprint-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(13, 1, 41, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 1, 41, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(25, 97, 92, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 97, 92, 0.08) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px, 160px 160px, 160px 160px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 70%);
}

.elec-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid #0d0129;
  color: #0d0129;
  background: #fffcf7;
}

.elec-header-inner {
  width: min(1280px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.elec-logo {
  display: inline-flex;
  align-items: center;
  color: #0d0129;
  text-decoration: none;
}

.elec-logo img {
  display: block;
  width: 244px;
  height: auto;
}

.elec-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  border: 1px solid #0d0129;
  background: #ffffff;
}

.elec-nav a,
.elec-switch-link,
.elec-header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #0d0129;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.elec-nav a {
  border-right: 1px solid #0d0129;
}

.elec-nav a:last-child {
  border-right: 0;
}

.elec-nav a.active {
  background: #fae59b;
}

.elec-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.elec-switch-link {
  border: 1px solid #0d0129;
  background: #ffffff;
}

.elec-header-cta {
  border: 1px solid #0d0129;
  background: #0d0129;
  color: #ffffff;
  box-shadow: rgb(0, 0, 0) 1px 1px 3px 0px;
}

.elec-holding-hero,
.elec-page-hero,
.elec-hero {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: clamp(40px, 6vw, 104px);
  align-items: center;
}

.elec-holding-hero {
  min-height: calc(72svh - 82px);
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  padding: clamp(56px, 7vh, 88px) 0 56px;
}

.elec-page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  padding: clamp(56px, 8vh, 104px) 0 48px;
}

.elec-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  padding: clamp(56px, 8vh, 104px) 0 56px;
}

.elec-hero-home {
  min-height: calc(78svh - 82px);
}

.elec-hero-copy {
  min-width: 0;
}

.elec-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--elec-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.elec-kicker span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid var(--elec-ink);
  background: var(--elec-white);
}

.elec-kicker span:first-child {
  background: var(--elec-yellow);
}

.elec-holding-copy h1,
.elec-page-hero h1,
.elec-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--elec-ink);
  font-family: var(--font-ui);
  font-size: clamp(42px, 5.2vw, 66px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.elec-holding-copy p,
.elec-page-hero p,
.elec-hero-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(13, 1, 41, 0.74);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.65;
}

.elec-holding-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.elec-holding-actions .button {
  border: 1px solid var(--elec-ink);
  border-radius: 0;
  background: var(--elec-ink);
  color: var(--elec-white);
  box-shadow: rgb(0, 0, 0) 1px 1px 3px 0px;
}

.elec-holding-actions .button-secondary {
  color: var(--elec-ink);
  background: var(--elec-yellow);
}

.elec-holding-panel,
.elec-image-card,
.elec-service-strip,
.elec-square-grid,
.elec-offer-grid,
.elec-pixel-bridge,
.elec-holding-callout,
.elec-trust-strip,
.elec-editorial-band,
.elec-card-grid,
.elec-split-section,
.elec-warning-band,
.elec-cta-band,
.elec-contact-form,
.elec-contact-help {
  box-shadow: rgb(0, 0, 0) 1px 1px 3px 0px;
}

.elec-holding-panel {
  overflow: hidden;
  border: 1px solid var(--elec-ink);
  border-radius: 0;
  background: var(--elec-white);
}

.elec-holding-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--elec-ink);
  background: var(--elec-teal);
}

.elec-holding-panel-head span,
.elec-holding-panel li span {
  color: rgba(13, 1, 41, 0.62);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.elec-holding-panel-head span {
  color: var(--elec-white);
}

.elec-holding-panel-head strong {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--elec-ink);
  color: var(--elec-ink);
  background: var(--elec-yellow);
  font-size: 16px;
}

.elec-holding-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.elec-holding-panel li {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-bottom: 1px solid var(--elec-ink);
}

.elec-holding-panel li:last-child {
  border-bottom: 0;
}

.elec-holding-panel li strong {
  color: var(--elec-ink);
  font-size: 20px;
  line-height: 1.6;
}

.elec-holding-callout {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding: 40px;
  border: 1px solid var(--elec-ink);
  color: var(--elec-white);
  background: var(--elec-teal);
}

.elec-holding-callout span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--elec-yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.elec-holding-callout h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--elec-white);
  font-family: var(--font-ui);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

.elec-holding-callout p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.65;
}

.elec-service-strip,
.elec-square-grid,
.elec-offer-grid {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 64px;
  display: grid;
  border: 1px solid var(--elec-ink);
  background: var(--elec-white);
}

.elec-service-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 96px;
}

.elec-service-strip a,
.elec-square-grid article,
.elec-offer-grid article {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--elec-ink);
}

.elec-service-strip a {
  min-height: 188px;
  gap: 12px;
  padding: 24px;
  color: var(--elec-ink);
  text-decoration: none;
}

.elec-service-strip a:last-child,
.elec-square-grid article:last-child,
.elec-offer-grid article:last-child {
  border-right: 0;
}

.elec-service-strip span,
.elec-square-grid article span,
.elec-offer-grid span {
  color: var(--elec-teal);
  font-size: 13px;
  font-weight: 850;
}

.elec-service-strip strong {
  font-size: 24px;
  line-height: 1.2;
}

.elec-service-strip em {
  max-width: 28ch;
  color: rgba(13, 1, 41, 0.68);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.55;
}

.elec-image-card {
  margin: 0;
  border: 1px solid var(--elec-ink);
  background: var(--elec-white);
}

.elec-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.elec-hero-image img {
  aspect-ratio: 1.5;
}

.elec-trust-strip,
.elec-card-grid,
.elec-split-section,
.elec-warning-band,
.elec-cta-band,
.elec-editorial-band,
.elec-contact-layout {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.elec-trust-strip {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--elec-ink);
  background: var(--elec-white);
}

.elec-trust-strip article,
.elec-card-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border-right: 1px solid var(--elec-ink);
}

.elec-trust-strip article:last-child,
.elec-card-grid article:last-child {
  border-right: 0;
}

.elec-trust-strip span,
.elec-card-grid span,
.elec-split-section span,
.elec-warning-band span,
.elec-cta-band span,
.elec-editorial-band span,
.elec-contact-help span {
  color: var(--elec-teal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.elec-trust-strip strong,
.elec-card-grid h2 {
  margin: 0;
  color: var(--elec-ink);
  font-family: var(--font-ui);
  line-height: 1.18;
  letter-spacing: 0;
}

.elec-trust-strip strong {
  font-size: 25px;
}

.elec-trust-strip p,
.elec-card-grid p,
.elec-split-section li,
.elec-warning-band p,
.elec-editorial-band p,
.elec-contact-help li,
.elec-contact-form p {
  margin: 0;
  color: rgba(13, 1, 41, 0.7);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.58;
}

.elec-editorial-band,
.elec-warning-band,
.elec-cta-band {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding: 40px;
  border: 1px solid var(--elec-ink);
}

.elec-editorial-band {
  color: var(--elec-white);
  background: var(--elec-teal);
}

.elec-editorial-band span,
.elec-warning-band span {
  color: var(--elec-yellow);
}

.elec-editorial-band h2,
.elec-warning-band h2,
.elec-cta-band h2,
.elec-split-section h2,
.elec-contact-help h2 {
  margin: 0;
  color: inherit;
  font-family: var(--font-ui);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.14;
  letter-spacing: 0;
}

.elec-editorial-band h2,
.elec-editorial-band p {
  color: var(--elec-white);
}

.elec-card-grid {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--elec-ink);
  background: var(--elec-white);
}

.elec-card-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.elec-card-grid article {
  min-height: 260px;
}

.elec-card-grid h2 {
  font-size: 26px;
}

.elec-card-grid a {
  width: max-content;
  margin-top: auto;
  color: var(--elec-ink);
  font-size: 15px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.elec-split-section {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 40px;
  padding: 40px;
  border: 1px solid var(--elec-ink);
  background: linear-gradient(90deg, var(--elec-yellow) 0 18px, transparent 18px), var(--elec-white);
}

.elec-feature-list,
.elec-step-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.elec-step-list li strong {
  color: var(--elec-ink);
}

.elec-warning-band {
  color: var(--elec-white);
  background: #0d0129;
}

.elec-warning-band p {
  color: rgba(255, 255, 255, 0.86);
}

.elec-cta-band {
  align-items: center;
  color: var(--elec-ink);
  background: var(--elec-yellow);
}

.elec-cta-band .button {
  justify-self: end;
  border: 1px solid var(--elec-ink);
  border-radius: 0;
  color: var(--elec-white);
  background: var(--elec-ink);
}

.elec-square-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.elec-square-grid article {
  min-height: 260px;
  gap: 14px;
  padding: 24px;
}

.elec-square-grid article h2 {
  margin: 0;
  color: var(--elec-ink);
  font-family: var(--font-ui);
  font-size: 27px;
  line-height: 1.16;
  letter-spacing: 0;
}

.elec-square-grid article p {
  margin: 0;
  color: rgba(13, 1, 41, 0.68);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.elec-page-callout {
  margin-bottom: 96px;
}

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

.elec-offer-grid article {
  min-height: 360px;
  gap: 16px;
  padding: 32px;
}

.elec-offer-grid article.is-featured {
  background: #fae59b;
}

.elec-offer-grid span {
  text-transform: uppercase;
}

.elec-offer-grid h2 {
  margin: 0;
  color: var(--elec-ink);
  font-family: var(--font-ui);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.elec-offer-grid p {
  max-width: 36ch;
  margin: 0;
  color: rgba(13, 1, 41, 0.72);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.elec-offer-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--elec-ink);
  font-size: 22px;
  line-height: 1.35;
}

.elec-offer-grid ul {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.elec-offer-grid li {
  position: relative;
  padding-left: 22px;
  color: rgba(13, 1, 41, 0.72);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
}

.elec-offer-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border: 1px solid var(--elec-ink);
  background: var(--elec-teal);
}

.elec-pixel-bridge {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.1fr);
  gap: 40px;
  padding: 40px;
  border: 1px solid var(--elec-ink);
  background:
    linear-gradient(90deg, #fae59b 0 18px, transparent 18px),
    #ffffff;
}

.elec-pixel-bridge span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--elec-teal);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.elec-pixel-bridge h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--elec-ink);
  font-family: var(--font-ui);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.elec-pixel-bridge p {
  max-width: 760px;
  margin: 0;
  color: rgba(13, 1, 41, 0.72);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.65;
}

.elec-pixel-bridge p + p {
  margin-top: 16px;
}

.elec-contact-layout {
  margin-bottom: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 40px;
  align-items: start;
}

.elec-contact-form,
.elec-contact-help {
  border: 1px solid var(--elec-ink);
  background: var(--elec-white);
}

.elec-contact-form {
  padding: 32px;
}

.elec-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.elec-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--elec-ink);
  font-size: 14px;
  font-weight: 850;
}

.elec-form-grid .full {
  grid-column: 1 / -1;
}

.elec-form-grid input,
.elec-form-grid textarea {
  width: 100%;
  border: 1px solid var(--elec-ink);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--elec-ink);
  background: #fffefb;
  font: inherit;
  font-weight: 600;
}

.elec-form-grid textarea {
  resize: vertical;
}

.elec-contact-form .button {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  border: 1px solid var(--elec-ink);
  border-radius: 0;
  color: var(--elec-white);
  background: var(--elec-ink);
}

.elec-contact-form > p {
  margin-top: 14px;
  font-size: 14px;
}

.elec-form-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--elec-ink);
  background: var(--elec-yellow);
}

.elec-form-alert p {
  margin: 0;
  color: var(--elec-ink);
  font-weight: 750;
}

.elec-contact-help {
  display: grid;
  gap: 18px;
  padding: 32px;
  background:
    linear-gradient(90deg, var(--elec-yellow) 0 18px, transparent 18px),
    var(--elec-white);
}

.elec-contact-help ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.elec-site-footer {
  border-top: 1px solid #0d0129;
  color: #0d0129;
  background: #fffcf7;
}

.elec-footer-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 40px;
  padding: 40px 0;
}

.elec-footer-inner p {
  max-width: 440px;
  margin: 18px 0 0;
  color: rgba(13, 1, 41, 0.68);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.elec-footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  align-content: start;
}

.elec-footer-inner nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #0d0129;
  color: #0d0129;
  background: #ffffff;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 860px) {
  .elec-header-inner {
    width: min(100% - 28px, 680px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 0;
  }

  .elec-logo img {
    width: 196px;
  }

  .elec-nav,
  .elec-header-actions {
    width: 100%;
    justify-self: stretch;
    overflow-x: auto;
  }

  .elec-nav {
    justify-content: flex-start;
  }

  .elec-header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .elec-blueprint-grid {
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 74%);
  }

  .elec-holding-hero,
  .elec-page-hero,
  .elec-hero {
    width: min(100% - 36px, 680px);
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding: 46px 0 40px;
  }

  .elec-holding-copy h1,
  .elec-page-hero h1,
  .elec-hero-copy h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .elec-holding-actions {
    flex-direction: column;
  }

  .elec-holding-actions .button {
    width: 100%;
    justify-content: center;
  }

  .elec-holding-callout,
  .elec-pixel-bridge,
  .elec-footer-inner,
  .elec-editorial-band,
  .elec-split-section,
  .elec-warning-band,
  .elec-cta-band,
  .elec-contact-layout {
    width: min(100% - 36px, 680px);
    grid-template-columns: 1fr;
  }

  .elec-holding-callout {
    padding: 28px;
    margin-bottom: 56px;
  }

  .elec-service-strip,
  .elec-square-grid,
  .elec-offer-grid,
  .elec-trust-strip,
  .elec-card-grid {
    width: min(100% - 36px, 680px);
    grid-template-columns: 1fr;
  }

  .elec-service-strip a,
  .elec-square-grid article,
  .elec-offer-grid article,
  .elec-trust-strip article,
  .elec-card-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--elec-ink);
  }

  .elec-service-strip a:last-child,
  .elec-square-grid article:last-child,
  .elec-offer-grid article:last-child,
  .elec-trust-strip article:last-child,
  .elec-card-grid article:last-child {
    border-bottom: 0;
  }

  .elec-cta-band .button {
    justify-self: stretch;
    justify-content: center;
  }

  .elec-form-grid {
    grid-template-columns: 1fr;
  }

  .elec-footer-inner nav {
    justify-content: flex-start;
  }
}
