/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.koranivelVitalRenewAura_BodyMain {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0A0D10; /* Темний графіт */
    color: #E6FBFF; /* Світло-айс текст */
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* CONTAINERS */
.koranivelVitalRenewAura_SectionInner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.koranivelVitalRenewAura_CommonSection {
    padding: 100px 0;
    border-bottom: 1px solid rgba(230, 251, 255, 0.1);
}

/* HEADER */
.koranivelVitalRenewAura_HeaderWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 13, 16, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E6FBFF; /* Ice line */
}

.koranivelVitalRenewAura_HeaderContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.koranivelVitalRenewAura_LogoText {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #E6FBFF;
    text-transform: uppercase;
}

.koranivelVitalRenewAura_NavList {
    display: flex;
    gap: 30px;
}

.koranivelVitalRenewAura_NavLink {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.koranivelVitalRenewAura_NavLink:hover {
    color: #00ffe0;
    text-shadow: 0 0 10px rgba(0, 255, 224, 0.5);
}

/* BURGER MENU (No JS) */
.koranivelVitalRenewAura_MenuCheckbox {
    display: none;
}

.koranivelVitalRenewAura_BurgerBtn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.koranivelVitalRenewAura_BurgerBtn span {
    width: 30px;
    height: 2px;
    background-color: #E6FBFF;
    transition: 0.3s;
}

/* HERO SECTION */
.koranivelVitalRenewAura_HeroSection {
    padding-top: 180px;
    padding-bottom: 120px;
}

.koranivelVitalRenewAura_RedBorderVariant {
    border: 3px solid #ff4d4d; /* Красное обведение согласно промпту */
    margin: 20px;
    border-radius: 4px;
}

.koranivelVitalRenewAura_HeroFlex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.koranivelVitalRenewAura_HeroImageCol,
.koranivelVitalRenewAura_HeroTextCol {
    flex: 1;
}

.koranivelVitalRenewAura_MainTitle {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.koranivelVitalRenewAura_HeroSubtitle {
    font-size: 20px;
    color: #00ffe0;
    margin-bottom: 25px;
    font-weight: 600;
}

.koranivelVitalRenewAura_HeroDescription {
    margin-bottom: 20px;
    font-size: 17px;
    color: #d1d9e0;
}

.koranivelVitalRenewAura_HeroAction {
    margin-top: 40px;
}

/* BUTTONS */
.koranivelVitalRenewAura_BtnPrimary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #E6FBFF;
    color: #0A0D10;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(230, 251, 255, 0);
    transition: 0.4s;
}

.koranivelVitalRenewAura_BtnPrimary:hover {
    box-shadow: 0 0 20px rgba(230, 251, 255, 0.6);
    transform: translateY(-2px);
}

.koranivelVitalRenewAura_BtnSecondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #E6FBFF;
    border: 1px solid #E6FBFF;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s;
}

.koranivelVitalRenewAura_BtnSecondary:hover {
    background-color: rgba(230, 251, 255, 0.1);
    box-shadow: 0 0 15px rgba(230, 251, 255, 0.3);
}

/* REVIEWS */
.koranivelVitalRenewAura_ReviewsGrid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.koranivelVitalRenewAura_ReviewCard {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-left: 2px solid #00ffe0;
}

.koranivelVitalRenewAura_ReviewQuote {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

.koranivelVitalRenewAura_ReviewAuthor {
    display: block;
    font-weight: 700;
    color: #00ffe0;
}

/* PRICE */
.koranivelVitalRenewAura_SectionTitle {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.koranivelVitalRenewAura_PriceGrid {
    display: flex;
    gap: 20px;
}

.koranivelVitalRenewAura_PriceCard {
    flex: 1;
    background: #14191F;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(230, 251, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.koranivelVitalRenewAura_PriceFeatured {
    border: 2px solid #00ffe0;
    transform: scale(1.05);
    background: #1A2229;
}

.koranivelVitalRenewAura_PriceName {
    font-size: 22px;
    margin-bottom: 15px;
}

.koranivelVitalRenewAura_PriceValue {
    font-size: 32px;
    font-weight: 800;
    color: #00ffe0;
    margin-bottom: 30px;
}

.koranivelVitalRenewAura_PriceList {
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.koranivelVitalRenewAura_PriceList li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
}

.koranivelVitalRenewAura_PriceList li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00ffe0;
}

/* WHO SECTION */
.koranivelVitalRenewAura_AudienceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.koranivelVitalRenewAura_AudienceItem {
    flex: 1 1 calc(50% - 30px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(230, 251, 255, 0.05);
}

.koranivelVitalRenewAura_AudienceItem h4 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: #00ffe0;
}

.koranivelVitalRenewAura_AudienceItem p {
    padding: 0 20px 20px;
    color: #b0c0d0;
}

.koranivelVitalRenewAura_DetailedList {
    column-count: 2;
    gap: 40px;
    margin-top: 40px;
}

.koranivelVitalRenewAura_DetailedList li {
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(230, 251, 255, 0.03);
}

/* PRACTITIONER SECTION */
.koranivelVitalRenewAura_QuoteDetails {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 255, 224, 0.05);
    padding: 20px;
    border: 1px dashed #00ffe0;
}

.koranivelVitalRenewAura_QuoteSummary {
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    padding: 10px;
    text-align: center;
    list-style: none;
}

.koranivelVitalRenewAura_MainQuote {
    font-size: 22px;
    line-height: 1.6;
    margin: 30px 0;
    position: relative;
    padding: 0 40px;
}

.koranivelVitalRenewAura_PractitionerName {
    text-align: right;
    font-weight: 700;
    color: #00ffe0;
    text-transform: uppercase;
}

/* BENEFITS */
.koranivelVitalRenewAura_FlexRow {
    display: flex;
    align-items: center;
    gap: 60px;
}

.koranivelVitalRenewAura_BenefitsTextCol, .koranivelVitalRenewAura_BenefitsImageCol {
    flex: 1;
}

.koranivelVitalRenewAura_BenefitsList li {
    margin-bottom: 25px;
    font-size: 18px;
}

.koranivelVitalRenewAura_BenefitsList li strong {
    color: #00ffe0;
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

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

.koranivelVitalRenewAura_FaqItem {
    margin-bottom: 15px;
    border: 1px solid rgba(230, 251, 255, 0.1);
}

.koranivelVitalRenewAura_FaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    background: #14191F;
    transition: 0.3s;
}

.koranivelVitalRenewAura_FaqSummary:hover {
    background: #1E252B;
    color: #00ffe0;
}

.koranivelVitalRenewAura_FaqAnswer {
    padding: 20px;
    background: rgba(10, 13, 16, 0.5);
    color: #d1d9e0;
}

/* FORM */
.koranivelVitalRenewAura_FormBox {
    max-width: 600px;
    margin: 0 auto;
    background: #14191F;
    padding: 60px;
    border-top: 4px solid #00ffe0;
}

.koranivelVitalRenewAura_FormTitle {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.koranivelVitalRenewAura_FormSubtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #b0c0d0;
}

.koranivelVitalRenewAura_FormGroup {
    margin-bottom: 20px;
}

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

.koranivelVitalRenewAura_Input,
.koranivelVitalRenewAura_Textarea {
    width: 100%;
    padding: 15px;
    background: #0A0D10;
    border: 1px solid rgba(230, 251, 255, 0.2);
    color: #fff;
    font-family: inherit;
}

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

.koranivelVitalRenewAura_BtnSubmit {
    width: 100%;
    padding: 18px;
    background: #E6FBFF;
    color: #0A0D10;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
}

.koranivelVitalRenewAura_CheckGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.koranivelVitalRenewAura_CheckLabel a {
    color: #00ffe0;
    text-decoration: underline;
}

/* FOOTER */
.koranivelVitalRenewAura_FooterSection {
    background: #050709;
    padding: 80px 0 40px;
    border-top: 1px solid #E6FBFF;
}

.koranivelVitalRenewAura_FooterTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.koranivelVitalRenewAura_FooterLogo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #E6FBFF;
}

.koranivelVitalRenewAura_FooterContact p {
    margin-bottom: 10px;
    color: #b0c0d0;
}

.koranivelVitalRenewAura_FooterMiddle {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(230, 251, 255, 0.1);
}

.koranivelVitalRenewAura_FooterLinks {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 13px;
}

.koranivelVitalRenewAura_FooterLinks a:hover {
    color: #00ffe0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .koranivelVitalRenewAura_HeroFlex,
    .koranivelVitalRenewAura_FlexRow {
        flex-direction: column;
    }
    
    .koranivelVitalRenewAura_PriceGrid,
    .koranivelVitalRenewAura_ReviewsGrid {
        flex-direction: column;
    }
    
    .koranivelVitalRenewAura_PriceFeatured {
        transform: scale(1);
    }
    
    .koranivelVitalRenewAura_DetailedList {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .koranivelVitalRenewAura_BurgerBtn {
        display: flex;
    }
    
    .koranivelVitalRenewAura_NavMenu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #0A0D10;
        transition: 0.5s;
        height: calc(100vh - 80px);
    }
    
    .koranivelVitalRenewAura_NavList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    
    .koranivelVitalRenewAura_MenuCheckbox:checked ~ .koranivelVitalRenewAura_NavMenu {
        left: 0;
    }
    
    .koranivelVitalRenewAura_MainTitle {
        font-size: 32px;
    }
    
    .koranivelVitalRenewAura_FooterTop {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

/* ADDITIONAL TEXT STYLES FOR LENGTH */
.koranivelVitalRenewAura_TextContent p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #cbd5e0;
}

.koranivelVitalRenewAura_TextList {
    margin: 30px 0;
    padding-left: 20px;
}

.koranivelVitalRenewAura_TextList li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.koranivelVitalRenewAura_TextList li::before {
    content: "❄";
    position: absolute;
    left: 0;
    color: #00ffe0;
}

.koranivelVitalRenewAura_BgAlt {
    background: rgba(230, 251, 255, 0.02);
}