/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffe4e6; /* ffe4e6 */
    color: #3f1d2e; /* 3f1d2e */
    line-height: 1.6;
    overflow-x: hidden;
}

.equilEnergySupportFieldContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.equilEnergySupportFieldHeader {
    background: #3f1d2e;
    color: #ffe4e6;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.equilEnergySupportFieldHeaderFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.equilEnergySupportFieldLogo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ec4899;
}

.equilEnergySupportFieldNavList {
    display: flex;
    list-style: none;
}

.equilEnergySupportFieldNavLink {
    color: #f9a8d4;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
}

.equilEnergySupportFieldNavLink:hover {
    color: #ffffff;
}

.equilEnergySupportFieldMenuCheckbox,
.equilEnergySupportFieldBurger {
    display: none;
}

/* Mobile Menu Hack */
@media (max-width: 991px) {
    .equilEnergySupportFieldBurger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
    }
    .equilEnergySupportFieldBurger span {
        display: block;
        width: 100%;
        height: 3px;
        background: #ec4899;
        margin-bottom: 5px;
        transition: 0.3s;
    }
    .equilEnergySupportFieldNav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #3f1d2e;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }
    .equilEnergySupportFieldNavList {
        flex-direction: column;
        padding: 20px;
    }
    .equilEnergySupportFieldNavLink {
        margin: 10px 0;
        display: block;
    }
    .equilEnergySupportFieldMenuCheckbox:checked ~ .equilEnergySupportFieldNav {
        max-height: 500px;
    }
}

/* Pattern Strip */
.equilEnergySupportFieldPatternStrip {
    height: 10px;
    background-image: radial-gradient(#ec4899 1px, transparent 1px);
    background-size: 10px 10px;
    background-color: #f9a8d4;
    opacity: 0.3;
}

/* Sections General */
section {
    padding: 80px 0;
}

.equilEnergySupportFieldSecTitle {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #3f1d2e;
}

/* Hero */
.equilEnergySupportFieldHeroGrid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.equilEnergySupportFieldHeroImageWrap {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.equilEnergySupportFieldHeroImg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.equilEnergySupportFieldHeroOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(63, 29, 46, 0.4), rgba(236, 72, 153, 0.2));
}

.equilEnergySupportFieldHeroContent {
    flex: 1;
    min-width: 300px;
}

.equilEnergySupportFieldHeroTitle {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #3f1d2e;
}

.equilEnergySupportFieldHeroSub {
    font-size: 20px;
    color: #ec4899;
    margin-bottom: 25px;
    font-weight: 600;
}

.equilEnergySupportFieldHeroText {
    margin-bottom: 15px;
    font-size: 17px;
}

.equilEnergySupportFieldHeroBtn,
.equilEnergySupportFieldPriceBtn,
.equilEnergySupportFieldSubmitBtn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #00f2ff;
    color: #3f1d2e;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.equilEnergySupportFieldHeroBtn:hover,
.equilEnergySupportFieldPriceBtn:hover,
.equilEnergySupportFieldSubmitBtn:hover {
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.9);
    transform: translateY(-3px);
}

/* FAQ */
.equilEnergySupportFieldFaqGrid {
    max-width: 800px;
    margin: 0 auto;
}

.equilEnergySupportFieldFaqCard {
    background: #f9a8d4;
    margin-bottom: 15px;
    border-radius: 12px;
    padding: 5px;
    transition: transform 0.3s;
}

.equilEnergySupportFieldFaqDetails {
    background: #ffe4e6;
    border-radius: 8px;
    padding: 15px;
}

.equilEnergySupportFieldFaqSummary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    padding: 5px;
    font-size: 18px;
}

.equilEnergySupportFieldFaqAnswer {
    padding-top: 15px;
    border-top: 1px solid #f9a8d4;
    margin-top: 10px;
}

/* Pricing */
.equilEnergySupportFieldPricingGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.equilEnergySupportFieldPriceCard {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 2px solid #f9a8d4;
    transition: 0.3s;
}

.equilPriceFeatured {
    border: 3px solid #ec4899;
    transform: scale(1.05);
}

.equilEnergySupportFieldPriceIcon {
    font-size: 50px;
    margin-bottom: 20px;
}

.equilEnergySupportFieldPriceName {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3f1d2e;
}

.equilEnergySupportFieldPriceVal {
    font-size: 32px;
    font-weight: 800;
    color: #ec4899;
    margin-bottom: 25px;
}

.equilEnergySupportFieldPriceList {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.equilEnergySupportFieldPriceList li {
    padding: 10px 0;
    border-bottom: 1px solid #ffe4e6;
}

/* Audience Badge Cloud */
.equilEnergySupportFieldBadgeCloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.equilEnergySupportFieldSecIntroText {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.equilEnergySupportFieldBadge {
    background: #ec4899;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 4px 4px 0px #3f1d2e;
}

/* Expert Section */
.equilEnergySupportFieldExpertFlex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.equilEnergySupportFieldExpertText {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.equilEnergySupportFieldQuoteLine {
    width: 60px;
    height: 4px;
    background: #ec4899;
    margin-bottom: 30px;
}

.equilEnergySupportFieldQuote {
    font-size: 26px;
    font-style: italic;
    color: #3f1d2e;
    margin-bottom: 20px;
    line-height: 1.4;
}

.equilEnergySupportFieldExpertName {
    font-weight: 800;
    color: #ec4899;
    font-size: 18px;
}

.equilEnergySupportFieldExpertPhotoWrap {
    flex: 1;
    min-width: 300px;
}

.equilEnergySupportFieldExpertImg {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 0px #f9a8d4;
}

/* More Info Sections */
.equilEnergySupportFieldMoreInfo {
    background: #fdf2f3;
}

.equilEnergySupportFieldInfoGrid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.equilEnergySupportFieldInfoItem {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(63, 29, 46, 0.05);
}

.equilEnergySupportFieldInfoTitle {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ec4899;
}

.equilEnergySupportFieldInfoPara {
    margin-bottom: 15px;
}

.equilEnergySupportFieldMoreInfoAlt {
    background: #ffe4e6;
}

.equilEnergySupportFieldFlexText {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.equilEnergySupportFieldTextBlock {
    flex: 1;
    min-width: 300px;
}

.equilEnergySupportFieldSubH {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3f1d2e;
}

.equilEnergySupportFieldInfoList {
    margin-left: 20px;
}

.equilEnergySupportFieldInfoList li {
    margin-bottom: 10px;
}

/* Practice Section */
.equilEnergySupportFieldPracticeGrid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.equilEnergySupportFieldPracticeContent {
    flex: 1;
    min-width: 300px;
}

.equilEnergySupportFieldCheckList {
    list-style: none;
}

.equilEnergySupportFieldCheckItem {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 18px;
}

.equilEnergySupportFieldCheckItem::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ec4899;
    font-weight: 800;
    background: #f9a8d4;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.equilEnergySupportFieldPracticeImage {
    flex: 1;
    min-width: 300px;
}

.equilEnergySupportFieldPracImg {
    width: 100%;
    border-radius: 50% 20% 50% 20%;
    border: 10px solid #f9a8d4;
}

/* Form Section */
.equilEnergySupportFieldFormCard {
    max-width: 700px;
    margin: 0 auto;
    background: #3f1d2e;
    color: #ffe4e6;
    padding: 60px;
    border-radius: 40px;
}

.equilEnergySupportFieldFormTitle {
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
}

.equilEnergySupportFieldFormSub {
    text-align: center;
    margin-bottom: 40px;
    color: #f9a8d4;
}

.equilEnergySupportFieldInputGroup {
    margin-bottom: 20px;
}

.equilEnergySupportFieldLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.equilEnergySupportFieldInput,
.equilEnergySupportFieldTextarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: #ffe4e6;
    color: #3f1d2e;
    font-size: 16px;
}

.equilEnergySupportFieldTextarea {
    height: 120px;
    resize: none;
}

.equilEnergySupportFieldCheckboxWrap {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.equilEnergySupportFieldCheckboxWrap a {
    color: #ec4899;
}

.equilEnergySupportFieldSubmitBtn {
    width: 100%;
}

.equilEnergySupportFieldDisclaimer {
    font-size: 12px;
    text-align: center;
    margin-top: 30px;
    opacity: 0.7;
}

/* Footer */
.equilEnergySupportFieldFooter {
    background: #3f1d2e;
    color: #ffe4e6;
    padding: 60px 0 20px;
}

.equilEnergySupportFieldFooterTop {
    text-align: center;
    margin-bottom: 50px;
}

.equilEnergySupportFieldFooterTop p {
    margin: 10px 0;
    color: #f9a8d4;
}

.equilEnergySupportFieldFooterTop a {
    color: #ec4899;
    text-decoration: none;
}

.equilEnergySupportFieldFooterBottom {
    border-top: 1px solid rgba(249, 168, 212, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
}

.equilEnergySupportFieldFooterNav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.equilEnergySupportFieldFooterNav a {
    color: #f9a8d4;
    text-decoration: none;
}

@media (max-width: 768px) {
    .equilEnergySupportFieldFooterBottom {
        flex-direction: column;
        text-align: center;
    }
    .equilEnergySupportFieldFooterNav {
        justify-content: center;
    }
    .equilEnergySupportFieldHeroTitle {
        font-size: 36px;
    }
    .equilEnergySupportFieldFormCard {
        padding: 30px;
    }
}