
/* Electric Life custom pages */
.el-page-main {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 100px 0;
}
.el-page-intro {
    max-width: 980px;
    margin: 0 auto 46px;
    text-align: center;
}
.el-page-intro h2,
.el-page-split h2,
.el-seo-block h2,
.el-faq-section h2,
.el-cta-section h2,
.el-related-links h2 {
    color: var(--1, #101828);
}
.el-page-intro p:not(.common-title) {
    max-width: 840px;
    margin: 18px auto 0;
    color: #5d6678;
    line-height: 1.75;
}
.el-page-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 42px 0 70px;
}
.el-page-card {
    background: #fff;
    border: 1px solid rgba(16,24,40,.08);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(16,24,40,.07);
    transition: transform .25s ease, box-shadow .25s ease;
}
.el-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(16,24,40,.11);
}
.el-page-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}
.el-page-card p {
    color: #667085;
    line-height: 1.65;
}
.el-page-split {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
    align-items: stretch;
    margin: 70px 0;
}
.el-page-split > div,
.el-seo-block,
.el-faq-mini,
.el-cta-section,
.el-related-links {
    background: #fff;
    border: 1px solid rgba(16,24,40,.08);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(16,24,40,.06);
}
.el-page-split p {
    color: #667085;
    line-height: 1.75;
}
.el-check-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    gap: 12px;
}
.el-check-list li {
    position: relative;
    padding-left: 34px;
    color: #344054;
    line-height: 1.55;
}
.el-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green, #65AE4A);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px;
}
.el-page-highlight {
    background:
        radial-gradient(circle at top right, rgba(101,174,74,.18), transparent 38%),
        linear-gradient(145deg, #f6fff3 0%, #ffffff 72%) !important;
}
.el-page-highlight h3 {
    font-size: 28px;
    margin-bottom: 14px;
}
.el-page-highlight .get-a-quote-btn {
    margin-top: 22px;
}
.el-seo-block {
    margin: 70px 0;
    text-align: center;
}
.el-seo-block p {
    max-width: 900px;
    margin: 18px auto 0;
    color: #667085;
    line-height: 1.75;
}
.el-faq-section {
    margin: 70px 0;
}
.el-faq-section > h2,
.el-faq-section > .common-title {
    text-align: center;
}
.el-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 34px;
}
.el-faq-mini h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.el-faq-mini p {
    color: #667085;
    line-height: 1.65;
}
.el-related-links {
    margin: 70px 0;
    text-align: center;
}
.el-related-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}
.el-related-grid a,
.el-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(101,174,74,.28);
    color: var(--green, #65AE4A);
    background: #fff;
    font-weight: 700;
    transition: all .2s ease;
}
.el-related-grid a:hover,
.el-secondary-btn:hover {
    background: var(--green, #65AE4A);
    color: #fff;
}
.el-cta-section {
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(101,174,74,.16), transparent 38%),
        linear-gradient(145deg, #ffffff 0%, #f6fff3 100%);
}
.el-cta-section p {
    max-width: 780px;
    margin: 18px auto 0;
    color: #667085;
    line-height: 1.75;
}
.el-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}
.el-cta-actions .get-a-quote-btn {
    min-width: 170px;
}
@media (max-width: 991px) {
    .el-page-card-grid,
    .el-page-split,
    .el-faq-grid {
        grid-template-columns: 1fr;
    }
    .el-page-main {
        padding: 70px 0;
    }
}
@media (max-width: 575px) {
    .el-page-main {
        width: min(100% - 24px, 1180px);
    }
    .el-page-card,
    .el-page-split > div,
    .el-seo-block,
    .el-faq-mini,
    .el-cta-section,
    .el-related-links {
        padding: 24px;
        border-radius: 24px;
    }
}


/* Electric Life premium page extensions */
.el-page-visual {
    margin: 0 0 72px;
}
.el-page-visual-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    min-height: 430px;
    background: #101828;
    box-shadow: 0 26px 70px rgba(16,24,40,.14);
}
.el-page-visual-card img {
    width: 100%;
    min-height: 430px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}
.el-page-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16,24,40,.68) 0%, rgba(16,24,40,.24) 44%, rgba(16,24,40,.06) 100%);
    pointer-events: none;
}
.el-page-visual-content {
    position: absolute;
    left: clamp(24px, 5vw, 58px);
    bottom: clamp(24px, 5vw, 52px);
    max-width: 560px;
    z-index: 2;
    color: #fff;
}
.el-page-visual-badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(101,174,74,.92);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.el-page-visual-content h3 {
    color: #fff;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}
.el-page-visual-content p {
    color: rgba(255,255,255,.86);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}
.el-process-section,
.el-spec-section {
    margin: 70px 0;
}
.el-process-section > .common-title,
.el-process-section > h2,
.el-spec-section > .common-title,
.el-spec-section > h2 {
    text-align: center;
}
.el-process-section > h2,
.el-spec-section > h2 {
    max-width: 840px;
    margin: 0 auto 34px;
}
.el-process-grid,
.el-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.el-process-step,
.el-spec-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(16,24,40,.08);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(16,24,40,.06);
    overflow: hidden;
}
.el-process-step::before {
    content: attr(data-step);
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: rgba(101,174,74,.12);
    color: var(--green, #65AE4A);
    font-weight: 900;
    margin-bottom: 18px;
}
.el-process-step h3,
.el-spec-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}
.el-process-step p,
.el-spec-card p {
    color: #667085;
    line-height: 1.65;
    margin: 0;
}
.el-spec-card {
    background:
        radial-gradient(circle at top right, rgba(101,174,74,.13), transparent 38%),
        #fff;
}
.el-page-card h3,
.el-faq-mini h3,
.el-process-step h3,
.el-spec-card h3 {
    color: #101828;
}
.el-related-grid a {
    text-decoration: none;
}
.el-page-main .get-a-quote-btn,
.el-page-main .el-secondary-btn {
    text-decoration: none;
}
@media (max-width: 1199px) {
    .el-process-grid,
    .el-spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .el-page-visual-card,
    .el-page-visual-card img {
        min-height: 360px;
    }
    .el-page-visual-card::after {
        background: linear-gradient(180deg, rgba(16,24,40,.12) 0%, rgba(16,24,40,.72) 100%);
    }
    .el-page-visual-content {
        left: 22px;
        right: 22px;
        bottom: 24px;
    }
    .el-process-grid,
    .el-spec-grid {
        grid-template-columns: 1fr;
    }
}


/* Fixes & premium responsive layout */
.el-page-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: stretch;
}
.el-page-card,
.el-faq-mini,
.el-process-step,
.el-spec-card,
.el-page-split > div,
.el-seo-block,
.el-cta-section,
.el-related-links {
    height: 100%;
}
.el-page-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
}
.el-faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    align-items: stretch;
}
.el-process-grid,
.el-spec-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: stretch;
}
.el-page-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.el-page-card p,
.el-faq-mini p,
.el-process-step p,
.el-spec-card p {
    margin: 0;
}
.cursor {
    display: none !important;
}
@media (max-width: 991px) {
    .el-page-split {
        grid-template-columns: 1fr;
    }
}
