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

html {
    scroll-padding-top: 95px;
}

section[id] {
    scroll-margin-top: 95px;
}

body.metakelniraJointWellnessGuide_MainBody {
    background-color: #020617;
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-weight: 700;
    color: #38bdf8;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

/* HEADER */
.metakelniraJointWellnessGuide_Header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);
}

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

.metakelniraJointWellnessGuide_Logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    letter-spacing: 1px;
}

.metakelniraJointWellnessGuide_Nav {
    display: flex;
    align-items: center;
}

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

.metakelniraJointWellnessGuide_NavLink {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 1rem;
}

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

.metakelniraJointWellnessGuide_MenuToggle, .metakelniraJointWellnessGuide_Burger {
    display: none;
}

.metakelniraJointWellnessGuide_HeaderLine {
    height: 4px;
    background: linear-gradient(90deg, transparent, #38bdf8, #22c55e, transparent);
    width: 90%;
    margin: 0 auto;
    border-radius: 100px;
}

/* HERO SECTION */
.metakelniraJointWellnessGuide_HeroSection {
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.metakelniraJointWellnessGuide_HeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.metakelniraJointWellnessGuide_HeroTextSide {
    flex: 1;
}

.metakelniraJointWellnessGuide_HeroImageSide {
    flex: 1;
    display: flex;
    justify-content: center;
}

.metakelniraJointWellnessGuide_HeroTitle {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #38bdf8, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.metakelniraJointWellnessGuide_HeroDesc {
    margin-bottom: 2.5rem;
}

.metakelniraJointWellnessGuide_HeroCTA {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #38bdf8;
    color: #020617;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    margin-bottom: 3rem;
}

.metakelniraJointWellnessGuide_HeroCTA:hover {
    background-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
}

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

.metakelniraJointWellnessGuide_StatItem {
    display: flex;
    flex-direction: column;
}

.metakelniraJointWellnessGuide_StatVal {
    font-size: 2rem;
    font-weight: 800;
    color: #22c55e;
}

.metakelniraJointWellnessGuide_StatLabel {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metakelniraJointWellnessGuide_HeroImg {
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.2);
    max-width: 100%;
}

/* INFO SECTIONS */
.metakelniraJointWellnessGuide_InfoSection {
    padding: 5rem 1rem;
}

.metakelniraJointWellnessGuide_AltBg {
    background-color: #0f172a;
}

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

.metakelniraJointWellnessGuide_SectionHeading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.metakelniraJointWellnessGuide_SectionHeading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #22c55e;
}

.metakelniraJointWellnessGuide_SectionHeadingCenter {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.metakelniraJointWellnessGuide_SubHeading {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #22c55e;
}

.metakelniraJointWellnessGuide_TextPara {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.metakelniraJointWellnessGuide_TextList {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.metakelniraJointWellnessGuide_TextList li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.metakelniraJointWellnessGuide_TextList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #38bdf8;
}

/* PRICING */
.metakelniraJointWellnessGuide_PricingSection {
    padding: 6rem 1rem;
    background-color: #020617;
}

.metakelniraJointWellnessGuide_ToggleContainer {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.metakelniraJointWellnessGuide_PriceInput {
    display: none;
}

.metakelniraJointWellnessGuide_ToggleLabels {
    background: #1e293b;
    padding: 0.5rem;
    border-radius: 50px;
    display: flex;
    position: relative;
    width: 300px;
    cursor: pointer;
}

.metakelniraJointWellnessGuide_ToggleLabel {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0;
    z-index: 10;
    color: #94a3b8;
    font-weight: 600;
    transition: color 0.3s ease;
}

.metakelniraJointWellnessGuide_ToggleSlider {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 140px;
    height: calc(100% - 1rem);
    background: #38bdf8;
    border-radius: 40px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#price_toggle_basic:checked ~ .metakelniraJointWellnessGuide_ToggleLabels .metakelniraJointWellnessGuide_ToggleLabel:first-child { color: #020617; }
#price_toggle_ext:checked ~ .metakelniraJointWellnessGuide_ToggleLabels .metakelniraJointWellnessGuide_ToggleLabel:last-child { color: #020617; }
#price_toggle_ext:checked ~ .metakelniraJointWellnessGuide_ToggleLabels .metakelniraJointWellnessGuide_ToggleSlider {
    transform: translateX(150px);
}

.metakelniraJointWellnessGuide_PricingGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.metakelniraJointWellnessGuide_PriceCard {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 3rem 2rem;
    border-radius: 20px;
    width: 350px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.metakelniraJointWellnessGuide_PriceCard:hover {
    transform: translateY(-10px);
    border-color: #38bdf8;
}

.metakelniraJointWellnessGuide_FeaturedCard {
    border: 2px solid #22c55e;
    position: relative;
    transform: scale(1.05);
}

.metakelniraJointWellnessGuide_Badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: #020617;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.metakelniraJointWellnessGuide_PriceTitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

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

.metakelniraJointWellnessGuide_Currency {
    font-size: 1.5rem;
    vertical-align: baseline;
    margin-right: 0.35rem;
}

.metakelniraJointWellnessGuide_Amount {
    display: inline;
}

.metakelniraJointWellnessGuide_PricingGrid .ext_price {
    display: none;
}

.metakelniraJointWellnessGuide_PricingSection:has(#price_toggle_ext:checked) .basic_price {
    display: none;
}

.metakelniraJointWellnessGuide_PricingSection:has(#price_toggle_ext:checked) .ext_price {
    display: inline;
}

.metakelniraJointWellnessGuide_PricingSection:has(#price_toggle_ext:checked) .basic_hidden {
    display: list-item;
}

.metakelniraJointWellnessGuide_PricingSection:has(#price_toggle_basic:checked) .basic_hidden {
    display: none;
}

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

.metakelniraJointWellnessGuide_PriceFeatures li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #94a3b8;
}

.metakelniraJointWellnessGuide_PriceFeatures li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
}

.metakelniraJointWellnessGuide_PriceBtn {
    text-align: center;
    padding: 1rem;
    border: 1px solid #38bdf8;
    color: #38bdf8;
    border-radius: 10px;
    font-weight: 700;
}

.metakelniraJointWellnessGuide_PriceBtn:hover {
    background: #38bdf8;
    color: #020617;
}

/* PRACTICE SECTION */
.metakelniraJointWellnessGuide_PracticeSection {
    padding: 6rem 1rem;
    background-color: #0f172a;
}

.metakelniraJointWellnessGuide_PracticeContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.metakelniraJointWellnessGuide_PracticeText {
    flex: 1.2;
}

.metakelniraJointWellnessGuide_PracticeImage {
    flex: 0.8;
}

.metakelniraJointWellnessGuide_HighlightBlock {
    border-left: 4px solid #22c55e;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.05);
    font-style: italic;
    font-size: 1.2rem;
    margin: 2rem 0;
    color: #e2e8f0;
}

.metakelniraJointWellnessGuide_BenefitList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metakelniraJointWellnessGuide_BenefitItem {
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
}

.metakelniraJointWellnessGuide_BenefitItem::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #38bdf8;
    border-radius: 50%;
}

.metakelniraJointWellnessGuide_GenericImg {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(0.5);
    transition: filter 0.5s ease;
}

.metakelniraJointWellnessGuide_GenericImg:hover {
    filter: grayscale(0);
}

/* FAQ */
.metakelniraJointWellnessGuide_FAQSection {
    padding: 6rem 1rem;
}

.metakelniraJointWellnessGuide_FAQList {
    margin-top: 3rem;
}

.metakelniraJointWellnessGuide_FAQItem {
    margin-bottom: 1.5rem;
    border-left: 3px solid #38bdf8;
    background: #0f172a;
    border-radius: 0 10px 10px 0;
}

.metakelniraJointWellnessGuide_FAQSummary {
    padding: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.metakelniraJointWellnessGuide_FAQSummary::after {
    content: '+';
    font-size: 1.5rem;
    color: #22c55e;
}

details[open] .metakelniraJointWellnessGuide_FAQSummary::after {
    content: '−';
}

.metakelniraJointWellnessGuide_FAQContent {
    padding: 0 1.5rem 1.5rem;
    color: #94a3b8;
}

/* FOR WHOM */
.metakelniraJointWellnessGuide_WhoSection {
    padding: 6rem 1rem;
    background-color: #020617;
}

.metakelniraJointWellnessGuide_SectionIntro {
    text-align: center;
    max-width: 700px;
    margin: -1rem auto 3rem;
    color: #94a3b8;
}

.metakelniraJointWellnessGuide_WhoGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.metakelniraJointWellnessGuide_WhoCard {
    background: #0f172a;
    padding: 2.5rem;
    border-radius: 15px;
    width: 350px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.metakelniraJointWellnessGuide_WhoCard:hover {
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

.metakelniraJointWellnessGuide_WhoIcon {
    margin-bottom: 1.5rem;
    border-radius: 50%;
}

.metakelniraJointWellnessGuide_WhoCard h4 {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.metakelniraJointWellnessGuide_WhoCard p {
    color: #64748b;
}

/* QUOTE */
.metakelniraJointWellnessGuide_QuoteSection {
    padding: 6rem 1rem;
}

.metakelniraJointWellnessGuide_QuoteCard {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    border: 1px solid #1e293b;
}

.metakelniraJointWellnessGuide_QuoteFlex {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.metakelniraJointWellnessGuide_QuotePhoto {
    flex: 0 0 250px;
}

.metakelniraJointWellnessGuide_PractitionerImg {
    width: 100%;
    border-radius: 50%;
    border: 4px solid #38bdf8;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.metakelniraJointWellnessGuide_QuoteText {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 2rem;
    font-style: italic;
}

.metakelniraJointWellnessGuide_QuoteAuthor {
    display: block;
    color: #22c55e;
    font-weight: 700;
    font-size: 1.1rem;
}

/* FORM */
.metakelniraJointWellnessGuide_FormSection {
    padding: 6rem 1rem;
    background: #020617;
}

.metakelniraJointWellnessGuide_FormContainer {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.metakelniraJointWellnessGuide_FormTitle {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.metakelniraJointWellnessGuide_FormSub {
    margin-bottom: 3rem;
    color: #94a3b8;
}

.metakelniraJointWellnessGuide_FormElement {
    text-align: left;
}

.metakelniraJointWellnessGuide_InputGroup {
    margin-bottom: 1.5rem;
}

.metakelniraJointWellnessGuide_Label {
    display: block;
    margin-bottom: 0.5rem;
    color: #38bdf8;
    font-weight: 600;
}

.metakelniraJointWellnessGuide_Input, .metakelniraJointWellnessGuide_Textarea {
    width: 100%;
    background: #1e293b;
    border: 1px solid #334155;
    padding: 1rem;
    border-radius: 10px;
    color: #e2e8f0;
    font-size: 1rem;
}

.metakelniraJointWellnessGuide_Input:focus, .metakelniraJointWellnessGuide_Textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
}

.metakelniraJointWellnessGuide_Textarea {
    height: 150px;
    resize: vertical;
}

.metakelniraJointWellnessGuide_CheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.metakelniraJointWellnessGuide_Checkbox {
    margin-top: 0.3rem;
}

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

.metakelniraJointWellnessGuide_CheckLabel a {
    color: #38bdf8;
}

.metakelniraJointWellnessGuide_SubmitBtn {
    width: 100%;
    padding: 1.2rem;
    background: #22c55e;
    color: #020617;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.metakelniraJointWellnessGuide_SubmitBtn:hover {
    background: #38bdf8;
}

.metakelniraJointWellnessGuide_Disclaimer {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    border: 1px dashed #334155;
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
}

/* FOOTER */
.metakelniraJointWellnessGuide_Footer {
    background: #000;
    padding: 4rem 1rem;
    text-align: center;
    border-top: 1px solid #1e293b;
}

.metakelniraJointWellnessGuide_FooterTop {
    margin-bottom: 2.5rem;
}

.metakelniraJointWellnessGuide_Copyright {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.metakelniraJointWellnessGuide_ContactInfo {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

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

.metakelniraJointWellnessGuide_FooterLinks {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.metakelniraJointWellnessGuide_FooterLink {
    color: #475569;
    font-size: 0.85rem;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .metakelniraJointWellnessGuide_HeroContainer, .metakelniraJointWellnessGuide_PracticeContainer {
        flex-direction: column;
        text-align: center;
    }
    
    .metakelniraJointWellnessGuide_HeroTitle { font-size: 2.8rem; }
    
    .metakelniraJointWellnessGuide_StatsGrid { justify-content: center; }
    
    .metakelniraJointWellnessGuide_PracticeText { order: 2; }
    .metakelniraJointWellnessGuide_PracticeImage { order: 1; margin-bottom: 3rem; }
    
    .metakelniraJointWellnessGuide_QuoteFlex { flex-direction: column; text-align: center; }
    .metakelniraJointWellnessGuide_QuotePhoto { flex: 0 0 auto; width: 180px; }
    
    .metakelniraJointWellnessGuide_BenefitList { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .metakelniraJointWellnessGuide_NavList {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #020617;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    .metakelniraJointWellnessGuide_MenuToggle:checked ~ .metakelniraJointWellnessGuide_NavList {
        right: 0;
    }
    
    .metakelniraJointWellnessGuide_Burger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .metakelniraJointWellnessGuide_Burger span {
        width: 30px;
        height: 3px;
        background: #38bdf8;
        border-radius: 2px;
    }
    
    .metakelniraJointWellnessGuide_HeroTitle { font-size: 2.2rem; }
    
    .metakelniraJointWellnessGuide_PriceCard { width: 100%; }
    .metakelniraJointWellnessGuide_FeaturedCard { transform: none; }
    
    .metakelniraJointWellnessGuide_QuoteCard { padding: 2rem; }
}

/* EXTENDED CSS LINES (FOR VOLUME) */
.metakelniraJointWellnessGuide_MainBody::-webkit-scrollbar { width: 10px; }
.metakelniraJointWellnessGuide_MainBody::-webkit-scrollbar-track { background: #020617; }
.metakelniraJointWellnessGuide_MainBody::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 5px; }
.metakelniraJointWellnessGuide_MainBody::-webkit-scrollbar-thumb:hover { background: #38bdf8; }

.metakelniraJointWellnessGuide_HeroSection::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    z-index: -1;
}

.metakelniraJointWellnessGuide_HeroSection::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    z-index: -1;
}

/* END OF CSS */
