#lae-landing {
  --brand-blue: #0068c7;
  --brand-blue-dark: #095bb0;
  --brand-yellow: #ffda24;
  --brand-orange: #ff9210;
  --brand-navy: #193954;
  --background: #fff;
  --foreground: #191b1c;
  --primary: #0068c7;
  --primary-foreground: #fff;
  --muted: #f3f4f4;
  --muted-foreground: #62686b;
  --border: #dadede;
  --radius: 0.4rem;
  color-scheme: light;
}
#lae-landing.dark {
  --background: #193954;
  --foreground: #fff;
  --primary: #0068c7;
  --primary-foreground: #fff;
  --muted: #284960;
  --muted-foreground: #c2c6c7;
  --border: #424748;
}
#lae-landing * {
  box-sizing: border-box;
}
#lae-landing {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
#lae-landing {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--foreground);
  font-size: 16px;
  line-height: 1.6;
}
#lae-landing a {
  color: inherit;
  text-decoration: none;
}
#lae-landing button,
#lae-landing input,
#lae-landing textarea {
  font: inherit;
}
#lae-landing .wrap {
  width: min(1200px, calc(100% - 64px));
  margin: auto;
}
#lae-landing .header {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
#lae-landing .brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.025em;
  line-height: 1.1;
}
#lae-landing .brandmark {
  display: grid;
  place-items: center;
  background: var(--brand-yellow);
  width: 41px;
  height: 47px;
  border-radius: 3px;
}
#lae-landing .brand-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.38em;
  margin-top: 7px;
}
#lae-landing .header-note {
  font-size: 13px;
  line-height: 1.7;
  color: #606567;
}
#lae-landing .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 4px;
  min-height: 52px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background 0.15s,
    transform 0.15s;
}
#lae-landing .button:hover {
  transform: translateY(-1px);
}
#lae-landing .outline {
  border-color: #d4d7d8;
  background: #fff;
}
#lae-landing .primary {
  background: var(--brand-yellow);
  color: #17191a;
}
#lae-landing .primary:hover {
  background: #ffe45c;
}
#lae-landing .hero {
  background: #3c5569;
  color: #fff;
  padding: 68px 0 72px;
}
#lae-landing .hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 70px;
  align-items: center;
}
#lae-landing .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin: 0 0 22px;
}
#lae-landing .hero .eyebrow {
  color: var(--brand-yellow);
}
#lae-landing h1 {
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin: 0 0 25px;
}
#lae-landing h1 .amber {
  display: block;
  color: var(--brand-yellow);
}
#lae-landing .intro {
  font-size: 17px;
  color: #eef3f7;
  line-height: 1.8;
}
#lae-landing .checks {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  display: grid;
  gap: 12px;
  font-size: 14px;
  color: #e2e4e5;
}
#lae-landing .checks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
#lae-landing .checks svg {
  color: var(--brand-yellow);
  flex-shrink: 0;
  margin-top: 3px;
}
#lae-landing .micro {
  font-size: 12px;
  line-height: 1.7;
  color: #e1eaf1;
  margin: 14px 0 0;
}
#lae-landing .hero-aside {
  background: #f1f1f1;
  border-top: 3px solid var(--brand-yellow);
  padding: 36px;
}
#lae-landing .hero-aside h2 {
  font-size: 35px;
}
#lae-landing .scope-line {
  display: flex;
  gap: 20px;
  font-size: 14px;
  padding: 20px 0;
  border-top: 1px solid #45494b;
}
#lae-landing .scope-line span {
  color: var(--brand-yellow);
  font-size: 12px;
}
#lae-landing .text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
}
#lae-landing .section {
  padding-top: 85px;
  padding-bottom: 85px;
}
#lae-landing h2 {
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
}
#lae-landing p {
  margin: 0 0 18px;
}
#lae-landing a:focus-visible,
#lae-landing button:focus-visible,
#lae-landing input:focus-visible,
#lae-landing textarea:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 4px;
}
@media (max-width: 760px) {
  #lae-landing .wrap {
    width: calc(100% - 36px);
  }
  #lae-landing .header {
    min-height: 84px;
    gap: 10px;
  }
  #lae-landing .header-note {
    display: none;
  }
  #lae-landing .brand {
    font-size: 14px;
  }
  #lae-landing .brandmark {
    width: 32px;
    height: 38px;
  }
  #lae-landing .brand-sub {
    font-size: 9px;
  }
  #lae-landing .header .button {
    font-size: 12px;
    padding: 10px;
    min-height: 44px;
  }
  #lae-landing .hero {
    padding: 40px 0 48px;
  }
  #lae-landing .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  #lae-landing .hero-aside {
    padding: 25px;
  }
  #lae-landing .section {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  #lae-landing .hero .button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  #lae-landing {
    scroll-behavior: auto;
  }
  #lae-landing * {
    transition: none !important;
  }
}
#lae-landing .skip {
  position: fixed;
  top: -100px;
  left: 16px;
  background: var(--brand-yellow);
  padding: 12px;
  z-index: 99;
}
#lae-landing .skip:focus {
  top: 10px;
}
#lae-landing .status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brand-yellow);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 5px;
}
#lae-landing .hero-aside {
  padding: 35px;
  border: 1px solid #444a4d;
  border-top: 3px solid var(--brand-yellow);
}
#lae-landing .aside-top {
  display: flex;
  justify-content: space-between;
  color: var(--brand-yellow);
}
#lae-landing .aside-top .eyebrow {
  font-size: 10px;
}
#lae-landing .hero-aside h2 {
  font-size: 42px;
  line-height: 1.13;
  margin-top: 15px;
}
#lae-landing .hero-aside h2 span {
  color: #a8afb3;
}
#lae-landing .aside-intro {
  font-size: 14px;
  color: #a8afb3;
  margin: 22px 0 30px;
}
#lae-landing .hero-aside .text-link {
  margin-top: 27px;
}
#lae-landing .hero-call {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  margin-top: 20px;
  font-weight: 600;
}
#lae-landing .trust-strip {
  border-bottom: 1px solid #dddfe0;
  background: #f5f6f6;
}
#lae-landing .trust-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 19px;
  padding-bottom: 19px;
  font-size: 13px;
}
#lae-landing .trust-strip span,
#lae-landing .trust-strip a {
  display: flex;
  gap: 9px;
  align-items: center;
}
#lae-landing .section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
#lae-landing .section .eyebrow {
  color: #72797b;
  font-size: 11px;
}
#lae-landing .section-copy {
  font-size: 15px;
  color: #60676b;
}
#lae-landing .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
#lae-landing .service-card {
  border: 1px solid #dadfe0;
  padding: 29px 28px;
  min-height: 258px;
  border-radius: 4px;
}
#lae-landing .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
#lae-landing .card-top svg {
  color: var(--brand-blue);
}
#lae-landing .card-top span {
  font-size: 12px;
  color: #7b8285;
}
#lae-landing h3 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin: 0 0 13px;
}
#lae-landing .service-card p,
#lae-landing .process-grid p {
  font-size: 14px;
  color: #646b6e;
  line-height: 1.8;
  margin: 0;
}
#lae-landing .ev-section {
  background: #f1f3f3;
  padding: 70px 0;
}
#lae-landing .ev-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 100px;
  align-items: center;
}
#lae-landing .ev-grid > div > p:not(.eyebrow) {
  color: #5a6266;
  font-size: 15px;
  line-height: 1.9;
}
#lae-landing .ev-grid .eyebrow {
  font-size: 11px;
  color: #697176;
}
#lae-landing .ev-grid .text-link {
  border-bottom: 1px solid #abb2b5;
  padding-bottom: 6px;
  margin-top: 5px;
}
#lae-landing .permit-note {
  border-left: 3px solid var(--brand-yellow);
  padding: 15px 0 15px 32px;
}
#lae-landing .permit-note svg {
  margin-bottom: 17px;
}
#lae-landing .permit-note h3 {
  font-size: 28px;
}
#lae-landing .permit-note p {
  font-size: 14px;
  line-height: 1.8;
  color: #60686c;
}
#lae-landing .permit-note .disclosure {
  font-size: 12px;
  border-top: 1px solid #d3d8d9;
  padding-top: 20px;
  margin-top: 22px;
  margin-bottom: 0;
}
#lae-landing .proof {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}
#lae-landing .proof > div > p:not(.eyebrow) {
  font-size: 15px;
  color: #626a6e;
  margin-bottom: 27px;
  line-height: 1.9;
}
#lae-landing figure {
  margin: 0;
}
#lae-landing .proof img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  display: block;
  background: #e6e9e9;
}
#lae-landing figcaption {
  font-size: 12px;
  line-height: 1.6;
  padding: 14px 0;
  display: grid;
  gap: 3px;
  color: #626a6e;
}
#lae-landing figcaption a {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 11px;
}
#lae-landing .process-section {
  background: #fafbfb;
  border-top: 1px solid #e5e8e8;
  border-bottom: 1px solid #e5e8e8;
}
#lae-landing .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 42px;
}
#lae-landing .step-number {
  border-top: 2px solid var(--brand-yellow);
  display: block;
  font-size: 13px;
  color: #6b7175;
  padding-top: 18px;
  margin-bottom: 22px;
}
#lae-landing .process-grid h3 {
  font-size: 19px;
}
#lae-landing .form-section {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 90px;
  align-items: start;
  scroll-margin-top: 25px;
}
#lae-landing .form-intro {
  position: sticky;
  top: 30px;
}
#lae-landing .form-intro > p:not(.eyebrow) {
  font-size: 15px;
  color: #666d70;
  line-height: 1.9;
}
#lae-landing .next-note {
  border-top: 1px solid #e0e4e4;
  margin-top: 30px;
  padding-top: 25px;
}
#lae-landing .small-label,
#lae-landing .form-step {
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
}
#lae-landing .next-note p {
  font-size: 14px;
  color: #60676a;
  margin-top: 12px;
}
#lae-landing .prefer-call {
  margin-top: 28px;
}
#lae-landing .prefer-call a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  color: #191c1e;
  font-weight: 700;
  margin-top: 5px;
}
#lae-landing .assessment-form {
  border: 1px solid #dfe3e4;
  border-top: 4px solid var(--brand-yellow);
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0 10px 40px #191c1e07;
}
#lae-landing .form-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 24px;
}
#lae-landing .required-note {
  font-size: 11px;
  color: #747b7e;
}
#lae-landing .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 16px;
}
#lae-landing .field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
#lae-landing .field.wide {
  grid-column: 1/-1;
}
#lae-landing .field label {
  font-size: 12px;
  font-weight: 600;
}
#lae-landing .field input,
#lae-landing .field textarea,
#lae-landing .field .form-select {
  border: 1px solid #ccd2d4;
  border-radius: 4px;
  min-height: 48px;
  width: 100%;
  padding: 11px 12px;
  background: #fff;
  font-size: 14px;
  color: #252a2d;
  line-height: 1.5;
}
#lae-landing .field textarea {
  resize: vertical;
}
#lae-landing .field input::placeholder,
#lae-landing .field textarea::placeholder {
  color: #858c90;
  font-size: 13px;
}
#lae-landing .field [aria-invalid='true'] {
  border-color: #b82929;
}
#lae-landing .field-error,
#lae-landing .submit-error {
  font-size: 12px;
  color: #b02121;
}
#lae-landing .submit-error {
  margin-top: 20px;
}
#lae-landing .select-menu {
  background: white;
  border: 1px solid #d3d8d9;
  padding: 5px;
  max-height: 300px;
  overflow: auto;
}
#lae-landing .select-menu [data-slot='select-item'] {
  padding: 12px 28px 12px 10px;
  font-size: 14px;
  min-height: 44px;
}
#lae-landing .select-menu [data-highlighted],
#lae-landing .select-menu [data-slot='select-item']:focus {
  background: #e4f1ff;
}
#lae-landing .submit {
  width: 100%;
  margin-top: 24px;
  min-height: 54px;
}
#lae-landing .submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
#lae-landing .form-micro {
  text-align: center;
  font-size: 12px;
  color: #6e767a;
  margin: 13px auto;
  max-width: 370px;
  line-height: 1.7;
}
#lae-landing .privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #7e8588;
  margin: 16px 0 0;
}
#lae-landing .honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
#lae-landing .faq-section {
  background: #f3f5f5;
}
#lae-landing .faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 90px;
}
#lae-landing .faq-grid details {
  border-bottom: 1px solid #ced4d6;
  padding: 22px 0;
}
#lae-landing .faq-grid details:first-child {
  padding-top: 0;
}
#lae-landing .faq-grid summary {
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 32px;
}
#lae-landing .faq-grid summary::-webkit-details-marker {
  display: none;
}
#lae-landing .faq-grid summary span {
  font-size: 22px;
  font-weight: 400;
}
#lae-landing .faq-grid details[open] summary span {
  transform: rotate(45deg);
}
#lae-landing .faq-grid details p {
  font-size: 14px;
  color: #616a6f;
  line-height: 1.9;
  margin: 17px 30px 0 0;
}
#lae-landing .final-section {
  background: var(--brand-navy);
  color: white;
  text-align: center;
  padding: 70px 0;
}
#lae-landing .final-section .eyebrow {
  color: var(--brand-yellow);
  font-size: 11px;
}
#lae-landing .final-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 25px;
  font-size: 15px;
  color: #e1eaf1;
  line-height: 1.9;
}
#lae-landing .final-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}
#lae-landing .dark-outline {
  border-color: #555c60;
  color: white;
}
#lae-landing .footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 11px;
  color: #71787d;
}
#lae-landing .mobile-bar {
  display: none;
}
@media (max-width: 1000px) {
  #lae-landing .hero-grid {
    gap: 35px;
  }
  #lae-landing .hero-aside {
    padding: 25px;
  }
  #lae-landing .hero-aside h2 {
    font-size: 35px;
  }
  #lae-landing .section-intro,
  #lae-landing .ev-grid,
  #lae-landing .proof,
  #lae-landing .form-section,
  #lae-landing .faq-grid {
    gap: 40px;
  }
  #lae-landing .service-card {
    padding: 22px;
  }
  #lae-landing .process-grid {
    gap: 24px;
  }
  #lae-landing .header-note {
    font-size: 11px;
  }
}
@media (max-width: 760px) {
  #lae-landing {
    padding-bottom: 83px;
  }
  #lae-landing .header .button {
    font-size: 11px;
  }
  #lae-landing .hero-aside {
    display: none;
  }
  #lae-landing .hero-call {
    justify-content: center;
  }
  #lae-landing .trust-strip .wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 25px;
    font-size: 11px;
  }
  #lae-landing .trust-strip .wrap > span:last-child {
    display: none;
  }
  #lae-landing .section-intro,
  #lae-landing .ev-grid,
  #lae-landing .proof,
  #lae-landing .form-section,
  #lae-landing .faq-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  #lae-landing .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }
  #lae-landing .service-card {
    min-height: 0;
    padding: 23px;
  }
  #lae-landing .card-top {
    margin-bottom: 18px;
  }
  #lae-landing .service-card h3 {
    font-size: 20px;
  }
  #lae-landing .ev-section {
    padding: 50px 0;
  }
  #lae-landing .permit-note {
    padding-left: 22px;
    margin-top: 10px;
  }
  #lae-landing .proof img {
    height: 360px;
  }
  #lae-landing .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 22px;
    margin-top: 27px;
  }
  #lae-landing .process-grid h3 {
    font-size: 17px;
  }
  #lae-landing .step-number {
    margin-bottom: 16px;
  }
  #lae-landing .form-intro {
    position: static;
  }
  #lae-landing .next-note {
    display: none;
  }
  #lae-landing .prefer-call {
    margin-top: 15px;
  }
  #lae-landing .assessment-form {
    padding: 23px 18px;
  }
  #lae-landing .form-grid {
    gap: 17px 12px;
  }
  #lae-landing .field label {
    font-size: 12px;
  }
  #lae-landing .field input,
  #lae-landing .field textarea,
  #lae-landing .field .form-select {
    font-size: 16px;
  }
  #lae-landing .form-micro {
    font-size: 12px;
  }
  #lae-landing .privacy {
    font-size: 10px;
  }
  #lae-landing .faq-grid {
    gap: 17px;
  }
  #lae-landing .faq-grid h2 br {
    display: none;
  }
  #lae-landing .final-section {
    padding: 50px 0;
  }
  #lae-landing .final-buttons {
    flex-direction: column;
  }
  #lae-landing .final-buttons .button {
    width: 100%;
  }
  #lae-landing .footer {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 5px 15px;
  }
  #lae-landing .mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #d7dcdf;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 8px;
    z-index: 40;
    box-shadow: 0 -4px 20px #00000009;
  }
  #lae-landing .mobile-bar .button {
    padding: 11px 9px;
    min-height: 48px;
    font-size: 11px;
    flex: 1;
    gap: 5px;
  }
  #lae-landing .mobile-bar .primary {
    flex: 1.15;
  }
  #lae-landing .form-heading {
    gap: 6px;
  }
  #lae-landing .required-note {
    font-size: 10px;
  }
}
@media (max-width: 390px) {
  #lae-landing .form-grid {
    grid-template-columns: 1fr;
  }
  #lae-landing .header .button svg {
    display: none;
  }
  #lae-landing .header .button {
    font-size: 10px;
  }
  #lae-landing .brand {
    font-size: 12px;
  }
  #lae-landing .hero h1 {
    font-size: 33px;
  }
  #lae-landing .mobile-bar .button {
    font-size: 10px;
    padding: 10px 5px;
  }
}
#lae-landing .thank-you {
  background: #3c5569;
  color: white;
  min-height: calc(100vh - 100px);
  padding: 85px 0;
  text-align: center;
}
#lae-landing .thank-you .wrap {
  max-width: 680px;
}
#lae-landing .thank-you p:not(.eyebrow) {
  color: #e1eaf1;
  max-width: 550px;
  margin: 0 auto 20px;
}
#lae-landing .thank-you .eyebrow {
  color: var(--brand-yellow);
}
#lae-landing .success-icon {
  display: grid;
  place-items: center;
  background: var(--brand-yellow);
  color: #191c1e;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: 0 auto 30px;
}
#lae-landing .thank-you .text-link {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
#lae-landing .thank-you .amber {
  color: var(--brand-yellow);
}

/* Palette from the supplied LA Electrical Services reference. */
#lae-landing .brand {
  color: var(--brand-navy);
}
#lae-landing .header .outline,
#lae-landing .submit.primary,
#lae-landing .mobile-bar .outline {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}
#lae-landing .header .outline:hover,
#lae-landing .submit.primary:hover,
#lae-landing .mobile-bar .outline:hover {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
}
#lae-landing .hero-aside {
  color: #191b1c;
  border-color: #e0e5ea;
  border-top-color: var(--brand-orange);
}
#lae-landing .hero-aside .eyebrow,
#lae-landing .aside-top,
#lae-landing .scope-line span,
#lae-landing .hero-aside .text-link {
  color: var(--brand-blue-dark);
}
#lae-landing .hero-aside h2 span {
  color: var(--brand-blue);
}
#lae-landing .aside-intro {
  color: #596775;
}
#lae-landing .scope-line {
  border-color: #d5dce3;
}
#lae-landing .trust-strip {
  background: var(--brand-blue-dark);
  color: #fff;
  border-color: var(--brand-blue-dark);
}
#lae-landing .trust-strip svg {
  color: var(--brand-yellow);
}
#lae-landing .section .eyebrow,
#lae-landing .ev-grid .eyebrow,
#lae-landing .prefer-call a,
#lae-landing .form-step,
#lae-landing .small-label {
  color: var(--brand-blue-dark);
}
#lae-landing .ev-grid .text-link,
#lae-landing .proof .outline {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}
#lae-landing .permit-note,
#lae-landing .assessment-form,
#lae-landing .step-number {
  border-top-color: var(--brand-orange);
}
#lae-landing .permit-note {
  border-left-color: var(--brand-orange);
}
#lae-landing .assessment-form {
  background: #f1f1f1;
}
#lae-landing .dark-outline {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}
#lae-landing .dark-outline:hover {
  background: var(--brand-blue-dark);
}
/* Short project intake, visible in the opening section on every screen. */
#lae-landing .hero-grid {
  grid-template-columns: 1.15fr 1fr;
  align-items: start;
  gap: 55px;
}
#lae-landing .hero {
  padding-top: 48px;
  padding-bottom: 48px;
}
#lae-landing .hero h1 {
  font-size: clamp(34px, 3.7vw, 49px);
}
#lae-landing .hero .intro {
  font-size: 16px;
  line-height: 1.75;
}
#lae-landing .hero-form {
  background: #f1f1f1;
  color: #191b1c;
  border-radius: 5px;
  border-top: 4px solid var(--brand-orange);
  padding: 28px;
  scroll-margin-top: 22px;
}
#lae-landing .hero-form h2 {
  font-size: 27px;
  margin-bottom: 10px;
}
#lae-landing .hero-form > p {
  font-size: 15px;
  color: #596775;
  line-height: 1.6;
  margin-bottom: 20px;
}
#lae-landing .hero-form .assessment-form {
  padding: 0;
  border: 0;
  box-shadow: none;
}
#lae-landing .assessment-form .form-grid {
  grid-template-columns: 1fr;
  gap: 15px;
}
#lae-landing .field label {
  font-size: 14px;
}
#lae-landing .form-heading {
  margin-bottom: 16px;
}
@media (max-width: 760px) {
  #lae-landing .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  #lae-landing .hero {
    padding-top: 30px;
  }
  #lae-landing .hero .checks,
  #lae-landing .hero .micro,
  #lae-landing .hero > .wrap > div:first-child > .primary {
    display: none;
  }
  #lae-landing .hero .intro {
    margin-bottom: 14px;
  }
  #lae-landing .hero-call {
    justify-content: flex-start;
    margin-top: 12px;
  }
  #lae-landing .hero-form {
    padding: 22px 18px;
  }
  #lae-landing .hero-form h2 {
    font-size: 25px;
  }
  #lae-landing .hero-form .field label {
    font-size: 14px;
  }
}

/* Explicit colors prevent WordPress/Elementor heading styles from overriding dark sections. */
#lae-landing .hero h1,
#lae-landing .final-section h2,
#lae-landing .thank-you h1 {
  color: #fff !important;
}
#lae-landing .hero h1 .amber,
#lae-landing .thank-you h1 .amber {
  color: var(--brand-yellow) !important;
}
#lae-landing .thank-you p:not(.eyebrow),
#lae-landing .final-section p:not(.eyebrow) {
  color: #eef3f7 !important;
}
#lae-landing .reviews-intro {
  color: #596775;
  font-size: 15px;
}
#lae-landing .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}
#lae-landing .review-card {
  border: 1px solid #d5dce3;
  border-top: 3px solid var(--brand-orange);
  border-radius: 5px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #193954;
}
#lae-landing .review-card .review-project {
  font-size: 13px;
  font-weight: 700;
  color: #095bb0;
}
#lae-landing .review-card > p:not(.review-project) {
  font-size: 15px;
  line-height: 1.8;
  color: #465663;
  flex: 1;
}
#lae-landing .review-card h3 {
  font-size: 17px;
  margin: 10px 0;
  color: #193954;
}
#lae-landing .review-card a {
  font-size: 13px;
  color: #095bb0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 760px) {
  #lae-landing .reviews-grid {
    grid-template-columns: 1fr;
  }
}
/* Clearer offer, restrained type, and a shorter reading path. */
#lae-landing {
  --radius: 8px;
}
#lae-landing {
  color: #193954;
}
#lae-landing .header {
  min-height: 90px;
}
#lae-landing .header-note {
  font-size: 13px;
}
#lae-landing .hero {
  background:
    linear-gradient(
      90deg,
      rgba(12, 35, 55, 0.97),
      rgba(12, 35, 55, 0.88) 50%,
      rgba(12, 35, 55, 0.7)
    ),
    url('https://laelectricalservices.com/wp-content/uploads/2026/09/547272200_122136157688864242_109967832259662410_n.jpg')
      center 45%/cover;
  padding: 64px 0;
}
#lae-landing .hero-grid {
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: center;
}
#lae-landing .hero h1 {
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
}
#lae-landing .hero .intro {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
}
#lae-landing .hero-explanation {
  max-width: 520px;
  color: #d9e5ef;
  font-size: 16px;
  line-height: 1.8;
}
#lae-landing .hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.13em;
  margin-bottom: 24px;
}
#lae-landing .hero .checks {
  font-size: 14px;
  gap: 10px;
  margin: 28px 0;
}
#lae-landing .hero-call {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
}
#lae-landing .hero-form {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  border-top: 4px solid var(--brand-orange);
  box-shadow: 0 24px 60px #0003;
}
#lae-landing .hero-form h2 {
  font-size: 28px;
  color: #193954 !important;
  letter-spacing: -0.03em;
}
#lae-landing .hero-form > p {
  font-size: 15px;
  margin-bottom: 22px;
}
#lae-landing .hero-form .form-kicker {
  color: #095bb0;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 10px;
}
#lae-landing .hero-form .assessment-form {
  background: #fff;
}
#lae-landing .form-heading {
  display: none;
}
#lae-landing .field label {
  font-size: 14px;
  color: #28465f;
}
#lae-landing .field input,
#lae-landing .field .form-select {
  min-height: 48px;
  background: #fff;
  border-color: #c8d3dc;
  font-size: 16px;
}
#lae-landing .form-grid {
  gap: 16px;
}
#lae-landing .button {
  border-radius: 6px;
}
#lae-landing .submit {
  margin-top: 20px;
}
#lae-landing .form-micro {
  font-size: 13px;
}
#lae-landing .privacy {
  font-size: 12px;
  color: #657482;
}
#lae-landing .trust-strip {
  background: #f2f6fa;
  color: #38546a;
  border-color: #e1e8ee;
}
#lae-landing .trust-strip svg {
  color: #095bb0;
}
#lae-landing .section {
  padding-top: 80px;
  padding-bottom: 80px;
}
#lae-landing h2 {
  font-size: clamp(29px, 3.2vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}
#lae-landing .section-heading {
  max-width: 700px;
  margin-bottom: 32px;
}
#lae-landing .section-heading h2 {
  margin-bottom: 16px;
}
#lae-landing .section-heading > p:not(.eyebrow) {
  color: #5a6c7a;
  font-size: 17px;
  line-height: 1.7;
}
#lae-landing .eyebrow {
  font-size: 11px;
  color: #095bb0;
  margin-bottom: 14px;
}
#lae-landing .service-grid {
  gap: 26px;
  margin-top: 0;
}
#lae-landing .service-card {
  border: 0;
  border-top: 1px solid #cbd8e2;
  border-radius: 0;
  padding: 28px 8px 0 0;
}
#lae-landing .service-icon {
  color: #0068c7;
  margin-bottom: 24px;
}
#lae-landing .service-card h3 {
  font-size: 23px;
  color: #193954;
  margin-bottom: 10px;
}
#lae-landing .service-card p {
  font-size: 16px;
  line-height: 1.75;
}
#lae-landing .service-card .service-detail {
  font-size: 14px;
  font-weight: 700;
  color: #32536d;
  margin-bottom: 12px;
}
#lae-landing .charging-section {
  background: #eef3f7;
}
#lae-landing .charging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
#lae-landing .charging-photo {
  min-height: 450px;
  border-radius: 10px;
  background:
    linear-gradient(0deg, rgba(12, 35, 55, 0.72), rgba(12, 35, 55, 0.06) 60%),
    url('https://laelectricalservices.com/wp-content/uploads/2026/09/547272200_122136157688864242_109967832259662410_n.jpg')
      center/cover;
  display: flex;
  align-items: end;
  padding: 28px;
}
#lae-landing .charging-photo span {
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
#lae-landing .charging-copy > p:not(.eyebrow) {
  color: #506777;
  font-size: 17px;
  line-height: 1.8;
}
#lae-landing .charging-copy h2 {
  color: #193954;
}
#lae-landing .charging-copy .text-link {
  color: #095bb0;
  margin-top: 4px;
}
#lae-landing .incentive {
  border-top: 1px solid #cdd9e3;
  margin-top: 32px;
  padding-top: 22px;
  font-size: 14px;
  color: #506777;
}
#lae-landing .incentive summary {
  color: #193954;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.6;
}
#lae-landing .incentive p {
  margin: 16px 0 10px;
  line-height: 1.8;
}
#lae-landing .incentive a {
  text-decoration: underline;
  color: #095bb0;
}
#lae-landing .process-section {
  background: white;
  border: 0;
}
#lae-landing .process-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 25px;
}
#lae-landing .step-number {
  color: #095bb0;
  border-top: 1px solid #cedae4;
  font-size: 25px;
  letter-spacing: -0.03em;
  padding-top: 20px;
}
#lae-landing .process-grid h3 {
  font-size: 22px;
}
#lae-landing .process-grid p {
  font-size: 16px;
}
#lae-landing .reviews-background {
  background: #f4f7fa;
}
#lae-landing .review-card {
  padding: 26px;
  border: 1px solid #e0e7ed;
  border-top: 3px solid var(--brand-orange);
  border-radius: 8px;
}
#lae-landing .review-card > p:not(.review-project) {
  font-size: 16px;
}
#lae-landing .reviews-grid {
  gap: 20px;
}
#lae-landing .faq-grid {
  grid-template-columns: 0.9fr 1.3fr;
}
#lae-landing .faq-grid summary {
  font-size: 17px;
  min-height: 44px;
}
#lae-landing .faq-grid details p {
  font-size: 16px;
}
#lae-landing .closing-section {
  background: #193954;
}
#lae-landing .closing-section .form-section {
  gap: 90px;
  align-items: center;
}
#lae-landing .closing-section .form-intro {
  position: static;
}
#lae-landing .closing-section h2 {
  color: #fff !important;
}
#lae-landing .closing-section .eyebrow {
  color: var(--brand-yellow);
}
#lae-landing .closing-section .form-intro > p:not(.eyebrow) {
  color: #d9e5ef;
  font-size: 17px;
}
#lae-landing .closing-phone {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: #fff !important;
  font-size: 28px;
  font-weight: 700;
  margin: 14px 0 24px;
}
#lae-landing .closing-section .form-intro .closing-note {
  font-size: 13px;
  line-height: 1.8;
  color: #b9cddd;
}
#lae-landing .closing-section .assessment-form {
  background: #fff;
  border-radius: 10px;
  border-top: 4px solid var(--brand-orange);
}
#lae-landing .thank-you h1 {
  font-size: clamp(36px, 4vw, 52px);
}
@media (max-width: 1000px) {
  #lae-landing .hero-grid {
    gap: 35px;
  }
  #lae-landing .charging-grid {
    gap: 35px;
  }
  #lae-landing .closing-section .form-section {
    gap: 40px;
  }
}
@media (max-width: 760px) {
  #lae-landing .header {
    min-height: 80px;
  }
  #lae-landing .header .button {
    font-size: 12px;
  }
  #lae-landing .hero {
    padding: 35px 0 40px;
  }
  #lae-landing .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  #lae-landing .hero h1 {
    font-size: 39px;
    margin-bottom: 20px;
  }
  #lae-landing .hero .intro {
    font-size: 18px;
  }
  #lae-landing .hero-explanation {
    font-size: 15px;
    margin-bottom: 12px;
  }
  #lae-landing .hero .checks {
    display: none;
  }
  #lae-landing .hero-call {
    font-size: 14px;
  }
  #lae-landing .hero-form {
    padding: 24px 20px;
  }
  #lae-landing .hero-form h2 {
    font-size: 27px;
  }
  #lae-landing .hero-form .form-kicker {
    display: none;
  }
  #lae-landing .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  #lae-landing .section-heading {
    margin-bottom: 25px;
  }
  #lae-landing .service-grid {
    gap: 28px;
  }
  #lae-landing .service-card {
    padding-top: 22px;
  }
  #lae-landing .service-icon {
    margin-bottom: 15px;
  }
  #lae-landing .charging-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 36px;
    padding-bottom: 44px;
  }
  #lae-landing .charging-photo {
    min-height: 330px;
  }
  #lae-landing .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #lae-landing .step-number {
    margin-bottom: 12px;
    padding-top: 15px;
  }
  #lae-landing .process-grid h3 {
    margin-bottom: 8px;
  }
  #lae-landing .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #lae-landing .faq-grid summary {
    font-size: 16px;
  }
  #lae-landing .closing-section .form-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  #lae-landing .closing-phone {
    font-size: 25px;
    margin: 8px 0 16px;
  }
  #lae-landing .mobile-bar .button {
    font-size: 12px;
  }
  #lae-landing .footer {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #lae-landing * {
    scroll-behavior: auto !important;
  }
}

/* Supplied mascot and wordmark preserve the exact reference lettering. */
#lae-landing .header .brand { gap:4px; flex-shrink:0; }
#lae-landing .brand-logo { display:block; width:78px; height:78px; object-fit:contain; }
#lae-landing .brand-wordmark { display:block; width:255px; height:auto; }
@media(max-width:1000px) { #lae-landing .header-note { display:none; } }
@media(max-width:760px) { #lae-landing .brand-logo { width:48px; height:58px; }#lae-landing .brand-wordmark { width:155px; }#lae-landing .header .brand { gap:0; }#lae-landing .header .button { font-size:11px; padding:10px 8px; } }
@media(max-width:390px) { #lae-landing .brand-wordmark { width:135px; }#lae-landing .brand-logo { width:42px; }#lae-landing .header .button { font-size:10px; } }

#lae-landing { background:#fff; width:100%; max-width:none; text-align:left; }
#lae-landing h1,#lae-landing h2,#lae-landing h3 { font-family:Arial,Helvetica,sans-serif;font-weight:700; }
#lae-landing svg { display:inline-block;vertical-align:middle;flex-shrink:0; }
#lae-landing select.form-select { appearance:auto; white-space:normal; }
#lae-landing [hidden] { display:none!important; }
#lae-landing .field input,#lae-landing .field select { margin:0;box-shadow:none; }
#lae-landing .button { text-decoration:none;line-height:1.5;letter-spacing:normal;text-transform:none; }
#lae-landing .field :focus-visible {outline:3px solid #ff9210;outline-offset:2px;}
