/* RESET & CORE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a; /* Dark Oceanic */
    color: #f8fafc;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* HEADER STYLES */
.alivioHdrStatic {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

.alivioHdrContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alivioHdrLogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: 1px;
}

.alivioHdrNeonLine {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
    box-shadow: 0 0 10px #38bdf8;
}

/* NAVIGATION (NO JS BURGER) */
.alivioNavToggleInp {
    display: none;
}

.alivioNavBtnLabel {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.alivioNavBtnLabel span {
    width: 25px;
    height: 2px;
    background: #38bdf8;
    transition: 0.3s;
}

.alivioNavListUl {
    display: flex;
    gap: 2rem;
}

.alivioNavLinkAnchor {
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 500;
}

.alivioNavLinkAnchor:hover {
    color: #38bdf8;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
}

/* HERO SECTION */
.alivioHeroSectionBlock {
    padding: 10rem 2rem 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.alivioHeroContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.alivioHeroRowFlex {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.alivioHeroImgTag {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(56, 189, 248, 0.2);
}

.alivioHeroColText {
    flex: 1.2;
    min-width: 300px;
}

.alivioHeroTitleH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #f8fafc, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.alivioHeroSubDesc {
    font-size: 1.4rem;
    color: #38bdf8;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.alivioHeroDescPara {
    margin-bottom: 1.2rem;
    color: #94a3b8;
    font-size: 1.1rem;
}

.alivioHeroBtnGroup {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.alivioBtnPrimaryGlow {
    padding: 1rem 2rem;
    background: #38bdf8;
    color: #0f172a;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

.alivioBtnPrimaryGlow:hover {
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.8);
    transform: translateY(-2px);
}

.alivioBtnSecondaryOln {
    padding: 1rem 2rem;
    border: 2px solid #38bdf8;
    color: #38bdf8;
    border-radius: 50px;
    font-weight: 700;
}

.alivioBtnSecondaryOln:hover {
    background: rgba(56, 189, 248, 0.1);
    transform: translateY(-2px);
}

/* TEXT SECTIONS */
.alivioTextSectionWrapper {
    padding: 6rem 2rem;
}

.alivioBgLightAlt {
    background: rgba(30, 41, 59, 0.5);
}

.alivioTextContainer {
    max-width: 1000px;
    margin: 0 auto;
}

.alivioSectionTitleH2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #f1f5f9;
}

.alivioTextSimplePara {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.alivioTextFeatureList {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.alivioTextFeatureItem {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
    font-weight: 500;
}

.alivioTextFeatureItem::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-weight: bold;
}

.alivioTextSubTitleH3 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    color: #38bdf8;
}

/* EXPERT QUOTE */
.alivioExpertQuoteBlock {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.alivioExpertContainer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.alivioExpertInnerBox {
    padding: 3rem;
    border-left: 1px solid rgba(56, 189, 248, 0.3);
    border-right: 1px solid rgba(56, 189, 248, 0.3);
}

.alivioExpertQuoteText {
    font-size: 2.2rem;
    font-style: italic;
    color: #f1f5f9;
    margin-bottom: 2rem;
    line-height: 1.4;
    position: relative;
}

.alivioExpertDivider {
    width: 60px;
    height: 3px;
    background: #38bdf8;
    margin: 2rem auto;
}

.alivioExpertAuthorName {
    font-size: 1.5rem;
    font-weight: 700;
    color: #38bdf8;
}

.alivioExpertAuthorStatus {
    color: #94a3b8;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* FAQ STYLES */
.alivioFaqSectionWrapper {
    padding: 6rem 2rem;
}

.alivioFaqContainer {
    max-width: 800px;
    margin: 0 auto;
}

.alivioFaqDetailsBox {
    background: rgba(30, 41, 59, 0.8);
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #38bdf8;
    overflow: hidden;
}

.alivioFaqSummaryLabel {
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f1f5f9;
    list-style: none;
    position: relative;
}

.alivioFaqSummaryLabel::-webkit-details-marker {
    display: none;
}

.alivioFaqAnswerContent {
    padding: 0 1.5rem 1.5rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* AUDIENCE SECTION */
.alivioAudienceSectionBlock {
    padding: 6rem 2rem;
    background: #0f172a;
}

.alivioAudienceContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.alivioAudienceHeader {
    text-align: center;
    margin-bottom: 4rem;
}

.alivioAudienceIntro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #94a3b8;
}

.alivioAudienceRowFlex {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.alivioAudienceCol {
    flex: 1;
    min-width: 300px;
    background: rgba(30, 41, 59, 0.4);
    padding: 2.5rem;
    border-radius: 15px;
}

.alivioAudienceCheckList {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.alivioAudienceCheckItem {
    padding-left: 3rem;
    position: relative;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.alivioAudienceCheckItem::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background: #38bdf8;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

/* REGULAR PRACTICE */
.alivioRegularSectionBlock {
    padding: 6rem 2rem;
}

.alivioRegularContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.alivioRegularRowFlex {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.alivioRegularColText {
    flex: 1;
}

.alivioRegularColImg {
    flex: 1;
}

.alivioRegularImgTag {
    border-radius: 20px;
}

.alivioRegularDesc {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.alivioRegularTickList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alivioRegularTickItem {
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
    color: #38bdf8;
}

.alivioRegularTickItem::after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #bef264;
    border-radius: 50%;
    box-shadow: 0 0 10px #bef264;
}

/* PRICING */
.alivioPricingSectionWrapper {
    padding: 6rem 2rem;
    background: rgba(15, 23, 42, 0.8);
}

.alivioPricingContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.alivioPricingCardsGrid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.alivioPricingCardItem {
    flex: 1;
    min-width: 300px;
    background: #1e293b;
    padding: 3rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.alivioPricingCardItem:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.3);
}

.alivioPricingCardFeatured {
    border: 2px solid #38bdf8;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.15);
    background: #0f172a;
    position: relative;
}

.alivioPricingCardName {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.alivioPricingPrice {
    font-size: 3rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 2rem;
}

.alivioPricingPrice span {
    font-size: 1.2rem;
    color: #94a3b8;
}

.alivioPricingCardFeatures {
    margin-bottom: 3rem;
    flex-grow: 1;
}

.alivioPricingCardFeatures li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #cbd5e1;
}

.alivioPricingCardBtn {
    display: block;
    text-align: center;
    padding: 1rem;
    background: transparent;
    border: 2px solid #38bdf8;
    color: #38bdf8;
    border-radius: 8px;
    font-weight: 700;
}

.alivioPricingCardFeatured .alivioPricingCardBtn {
    background: #38bdf8;
    color: #0f172a;
}

.alivioPricingDisclaimerBox {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.alivioPricingDisclaimerText {
    font-size: 0.9rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

/* CONTACT FORM */
.alivioContactSectionBlock {
    padding: 6rem 2rem;
}

.alivioContactContainer {
    max-width: 900px;
    margin: 0 auto;
}

.alivioContactBoxContent {
    background: #1e293b;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.alivioContactSub {
    text-align: center;
    margin-bottom: 3rem;
    color: #94a3b8;
}

.alivioFormRowFlex {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.alivioFormGroupItem {
    flex: 1;
    min-width: 250px;
}

.alivioFormGroupFull {
    margin-bottom: 1.5rem;
}

.alivioFormLabelTag {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #cbd5e1;
}

.alivioFormInputTag, .alivioFormTextareaTag {
    width: 100%;
    padding: 1rem;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #f1f5f9;
    font-size: 1rem;
}

.alivioFormInputTag:focus, .alivioFormTextareaTag:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

.alivioFormConsentBox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.alivioFormCheckLabel {
    font-size: 0.9rem;
    color: #94a3b8;
}

.alivioFormCheckLabel a {
    color: #38bdf8;
    text-decoration: underline;
}

.alivioBtnSubmitForm {
    width: 100%;
    padding: 1.2rem;
    background: #38bdf8;
    color: #0f172a;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
}

.alivioBtnSubmitForm:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.5);
}

/* FOOTER */
.alivioFooterStatic {
    padding: 6rem 2rem 2rem;
    background: #020617;
}

.alivioFooterContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.alivioFooterTopRow {
    display: flex;
    justify-content: space-between;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
    gap: 3rem;
}

.alivioFooterLogoText {
    font-size: 2rem;
    font-weight: 800;
    color: #38bdf8;
}

.alivioFooterTagline {
    color: #94a3b8;
    margin-top: 1rem;
}

.alivioFooterContactItem {
    margin-bottom: 0.8rem;
    color: #cbd5e1;
}

.alivioFooterContactItem a {
    color: #38bdf8;
}

.alivioFooterBottomRow {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.alivioFooterCopyright {
    color: #64748b;
    font-size: 0.9rem;
}

.alivioFooterLinksBlock {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.alivioFooterLinkItem {
    color: #64748b;
    font-size: 0.9rem;
}

.alivioFooterLinkItem:hover {
    color: #38bdf8;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .alivioHeroTitleH1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .alivioNavBtnLabel {
        display: flex;
    }
    
    .alivioNavMainBlock {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        height: 0;
        overflow: hidden;
        transition: 0.4s;
    }
    
    .alivioNavToggleInp:checked ~ .alivioNavMainBlock {
        height: auto;
        padding: 2rem;
    }
    
    .alivioNavListUl {
        flex-direction: column;
        text-align: center;
    }

    .alivioHeroRowFlex, .alivioRegularRowFlex {
        flex-direction: column;
        text-align: center;
    }
    
    .alivioHeroBtnGroup {
        justify-content: center;
    }
    
    .alivioSectionTitleH2 {
        font-size: 2rem;
    }

    .alivioContactBoxContent {
        padding: 2rem;
    }
}