/* =========================================================
   Lachlan Solar — Reusable content-section styles
   Brand: blue #2975AB · gold #F6B330 (logo palette)
   Used by redesigned content pages (battery, etc.)
   ========================================================= */

.lsc-sec {
  --blue: #2975AB;
  --blue-d: #1c5b85;
  --gold: #F6B330;
  --ink: #001233;
  --muted: #5d6b7e;
  --soft: #f6f8fb;
  --line: #e7ecf3;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .lsc-sec {
    padding: 60px 0;
  }
}

.lsc-sec.soft {
  background: var(--soft);
}

/* section header (centered) */
.lsc-head {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.lsc-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lsc-sec h1.lsc-h,
.lsc-sec h2.lsc-h {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  font-size: 38px;
  margin: 0 0 18px;
}

@media (max-width: 991px) {

  .lsc-sec h1.lsc-h,
  .lsc-sec h2.lsc-h {
    font-size: 28px;
  }
}

.lsc-sec p.lsc-p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
}

.lsc-sub {
  color: #2f3b4d;
  font-weight: 700;
  font-size: 16px;
  margin: 18px 0 6px;
}

/* check list */
.lsc-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.lsc-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: #2f3b4d;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.55;
}

.lsc-list li i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 2px;
  flex: none;
}

/* image figure */
.lsc-figwrap {
  position: relative;
}

.lsc-figwrap::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 58%;
  height: 62%;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  opacity: .1;
  z-index: 0;
}

.lsc-figure {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 34px 70px -34px rgba(13, 40, 82, .45);
}

.lsc-figure img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.lsc-fbadge {
  position: absolute;
  z-index: 2;
  left: -16px;
  bottom: 26px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 22px 44px -18px rgba(13, 40, 82, .42);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 270px;
}

.lsc-fbadge .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex: none;
}

.lsc-fbadge b {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.lsc-fbadge span {
  color: var(--muted);
  font-size: 12.5px;
}

@media (max-width: 991px) {
  .lsc-fbadge {
    left: 12px;
  }
}

/* button row */
.lsc-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.lsc-btns .lsc-call {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

.lsc-btns .lsc-call .ic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(41, 117, 171, .1);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 17px;
}

.lsc-btns .lsc-call small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
}

/* feature / benefit cards */
.lsc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  height: 100%;
  transition: .25s;
}

.lsc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -30px rgba(13, 40, 82, .35);
  border-color: transparent;
}

.lsc-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: linear-gradient(135deg, #3186bf, #1c5b85);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 23px;
  margin-bottom: 20px;
}

.lsc-card h5 {
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
}

.lsc-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* persona / comparison card (icon + kicker + list) */
.lsc-pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
}

.lsc-pcard .ph {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.lsc-pcard .ph .ic {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: rgba(41, 117, 171, .1);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 24px;
  flex: none;
}

.lsc-pcard .ph h4 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}

.lsc-pcard .kicker {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

/* numbered steps */
.lsc-steps {
  display: grid;
  gap: 16px;
}

.lsc-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  transition: .25s;
}

.lsc-step:hover {
  box-shadow: 0 24px 44px -28px rgba(13, 40, 82, .35);
  transform: translateX(4px);
  border-color: transparent;
}

.lsc-step .num {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(41, 117, 171, .1);
  color: var(--blue);
  font-weight: 800;
  font-size: 19px;
  display: grid;
  place-items: center;
}

.lsc-step h6 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.lsc-step p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* full-bleed CTA band */
.lsc-ctaband {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  padding: 80px 40px;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.lsc-ctaband::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 44, 68, .94), rgba(18, 44, 68, .62));
}

.lsc-ctaband>* {
  position: relative;
  z-index: 2;
}

.lsc-ctaband h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.25;
}

.lsc-ctaband p {
  color: rgba(255, 255, 255, .86);
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .lsc-ctaband {
    padding: 54px 22px;
  }

  .lsc-ctaband h2 {
    font-size: 25px;
  }
}

/* centered statement */
.lsc-statement {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

/* form section (homepage contact) */
.lsc-formsec .contact1-boxarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px 34px;
  box-shadow: 0 34px 64px -38px rgba(13, 40, 82, .28);
}

.lsc-formsec .input-area {
  margin-bottom: 16px;
}

.lsc-formsec .input-area input[type=text],
.lsc-formsec .input-area input[type=email],
.lsc-formsec .input-area input[type=tel] {
  width: 100%;
  height: 52px;
  border: 1.5px solid #e7ecf3;
  border-radius: 11px;
  padding: 0 16px;
  font-size: 15px;
  color: #001233;
  background: #f5f8fc;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.lsc-formsec .input-area input::placeholder {
  color: #9aa6b6;
}

.lsc-formsec .input-area input:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(41, 117, 171, .12);
  outline: none;
}

.lsc-formsec .nice-select {
  height: 52px;
  display: flex;
  align-items: center;
  line-height: normal;
  padding: 0 38px 0 16px;
  border: 1.5px solid #e7ecf3;
  border-radius: 11px;
  width: 100%;
  background: #f5f8fc;
  font-size: 15px;
  color: #4a5564;
}

.lsc-formsec .nice-select .current {
  display: block;
  line-height: normal;
}

.lsc-formsec .nice-select.open,
.lsc-formsec .nice-select:focus {
  border-color: var(--blue);
}

.lsc-formsec .privacy-blue-color {
  font-size: 13.5px;
  line-height: 1.6;
  color: #5a6675;
}

.lsc-formsec .vl-btn2.section1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  padding: 16px 28px;
}

/* reward / pricing tier cards */
.lsc-reward {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 30px 34px;
  text-align: center;
  height: 100%;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.lsc-reward:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 66px -34px rgba(13, 40, 82, .4);
  border-color: transparent;
}

.lsc-reward .r-tier {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(41, 117, 171, .1);
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.lsc-reward .r-ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, #3186bf, #1c5b85);
}

.lsc-reward .r-size {
  font-size: 12.5px;
  font-weight: 600;
  color: #8a93a3;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin: 0 0 2px;
}

.lsc-reward .r-amount {
  font-size: 54px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin: 6px 0 4px;
}

.lsc-reward .r-amount sup {
  font-size: 24px;
  font-weight: 700;
  top: -.75em;
  margin-right: 1px;
}

.lsc-reward .r-per {
  font-size: 11.5px;
  font-weight: 600;
  color: #9aa6b6;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0;
}

.lsc-reward .r-desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.lsc-reward.featured {
  background: linear-gradient(165deg, #2e6aad 0%, #1f527f 100%);
  border-color: transparent;
  box-shadow: 0 40px 72px -34px rgba(13, 40, 82, .55);
}

.lsc-reward.featured .r-tier {
  color: #14385a;
  background: var(--gold);
}

.lsc-reward.featured .r-ic {
  background: linear-gradient(135deg, #F6B330, #dd9b1a);
  color: #14385a;
}

.lsc-reward.featured .r-size {
  color: rgba(255, 255, 255, .65);
}

.lsc-reward.featured .r-amount {
  color: #fff;
}

.lsc-reward.featured .r-per {
  color: rgba(255, 255, 255, .6);
}

.lsc-reward.featured .r-desc {
  color: rgba(255, 255, 255, .85);
  border-top-color: rgba(255, 255, 255, .18);
}

.lsc-reward .r-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #14385a;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

@media (min-width: 992px) {
  .lsc-reward.featured {
    transform: translateY(-16px);
  }

  .lsc-reward.featured:hover {
    transform: translateY(-22px);
  }
}

/* reward rows (image + list layout) */
.lsc-rrow {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.lsc-rrow+.lsc-rrow {
  margin-top: 14px;
}

.lsc-rrow:hover {
  transform: translateX(5px);
  box-shadow: 0 24px 44px -28px rgba(13, 40, 82, .3);
  border-color: transparent;
}

.lsc-rrow .ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  flex: none;
  display: grid;
  place-items: center;
  font-size: 21px;
  color: #fff;
  background: linear-gradient(135deg, #3186bf, #1c5b85);
}

.lsc-rrow .info {
  flex: 1;
}

.lsc-rrow .info h6 {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.lsc-rrow .info span {
  font-size: 13px;
  color: var(--muted);
}

.lsc-rrow .amt {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
  line-height: 1;
}

.lsc-rrow .amt sup {
  font-size: 15px;
  font-weight: 700;
  top: -.6em;
}

.lsc-rrow.top {
  border-color: var(--gold);
  background: rgba(246, 179, 48, .07);
}

.lsc-rrow.top .ic {
  background: linear-gradient(135deg, #F6B330, #dd9b1a);
  color: #14385a;
}

/* ===== inner-page hero banner: image overlay + light text ===== */
.inner-header-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 26, 46, .86) 0%, rgba(7, 26, 46, .58) 52%, rgba(7, 26, 46, .15) 100%);
}

.inner-header-section .hero-heading-area h2,
.inner-header-section .hero-heading-area h1,
.inner-header-section .hero-heading-area p {
  color: #fff;
}

.inner-header-section .hero-heading-area .btn-area1 a {
  color: rgba(255, 255, 255, .82);
}

.inner-header-section .hero-heading-area .btn-area1 a span {
  color: var(--lsc-gold);
}

/* shorter banner height */
.inner-header-section {
  padding: 132px 0 44px;
}

@media (max-width: 991px) {
  .inner-header-section {
    padding: 104px 0 30px;
  }
}
