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

html {
    scroll-behavior: smooth;
}

body.MelotorRootLayout {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #111827;
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* HEADER STYLE */
.MelotorHeaderWrapper {
    position: relative;
    background-color: #111827;
    z-index: 1000;
}

.MelotorHeaderContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.MelotorLogoText {
    font-size: 28px;
    font-weight: 800;
    color: #4f46e5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.MelotorMainNavigation {
    display: flex;
}

.MelotorNavList {
    display: flex;
    gap: 25px;
}

.MelotorNavLink {
    color: #f8fafc;
    font-weight: 500;
    font-size: 16px;
}

.MelotorNavLink:hover {
    color: #c4b5fd;
}

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

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

.MelotorBurgerBtn span {
    width: 25px;
    height: 3px;
    background-color: #f8fafc;
    border-radius: 2px;
}

/* DISCLAIMER */
.MelotorMedicalDisclaimerHeader {
    background-color: #1f2937;
    padding: 10px 5%;
    text-align: center;
    border-bottom: 1px solid #374151;
}

.MelotorDisclaimerText {
    font-size: 12px;
    color: #9ca3af;
    max-width: 1000px;
    margin: 0 auto;
}

/* WAVE */
.MelotorHeaderWaveDivider svg {
    display: block;
    width: 100%;
    height: 60px;
    transform: rotate(180deg);
}

/* HERO SECTION */
.MelotorHeroSection {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.MelotorHeroInner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.MelotorHeroImageSide {
    flex: 1;
}

.MelotorHeroMainImg {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    object-fit: cover;
}

.MelotorHeroTextSide {
    flex: 1;
}

.MelotorHeroTitle {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #f8fafc, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.MelotorHeroSubtitle {
    font-size: 20px;
    color: #c4b5fd;
    margin-bottom: 25px;
    font-weight: 300;
}

.MelotorHeroDescription p {
    margin-bottom: 15px;
    color: #d1d5db;
}

.MelotorExpertBadge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 15px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
}

.MelotorAvatarImg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #4f46e5;
}

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

.MelotorExpertName {
    font-weight: 700;
    font-size: 18px;
}

.MelotorExpertRole {
    font-size: 14px;
    color: #9ca3af;
}

.MelotorPlasmaButton {
    display: inline-block;
    background-color: #00ffff;
    color: #111827;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transition: 0.4s;
}

.MelotorPlasmaButton:hover {
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
    transform: translateY(-3px);
}

/* SERVICES / PRICING */
.MelotorServicesSection {
    padding: 100px 5%;
    background-color: #0f172a;
}

.MelotorSectionHeader {
    text-align: center;
    margin-bottom: 60px;
}

.MelotorSectionTitle {
    font-size: 36px;
    margin-bottom: 10px;
}

.MelotorSectionUnderline {
    width: 80px;
    height: 4px;
    background: #4f46e5;
    margin: 0 auto;
}

.MelotorPricingGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.MelotorPriceCard {
    background: #1e2937;
    border: 1px solid #374151;
    border-radius: 20px;
    padding: 40px;
    width: 350px;
    text-align: center;
    transition: 0.3s;
}

.MelotorPriceCardFeatured {
    border-color: #4f46e5;
    transform: scale(1.05);
    background: linear-gradient(145deg, #1e2937, #111827);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.MelotorPriceIcon {
    font-size: 40px;
    margin-bottom: 20px;
}

.MelotorPriceName {
    font-size: 24px;
    margin-bottom: 15px;
}

.MelotorPriceValue {
    font-size: 32px;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 25px;
}

.MelotorPriceFeatures {
    text-align: left;
    margin-bottom: 30px;
}

.MelotorPriceFeatures li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #d1d5db;
}

.MelotorPriceFeatures li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-weight: bold;
}

.MelotorPriceButton {
    display: block;
    padding: 15px;
    border: 2px solid #4f46e5;
    color: #f8fafc;
    border-radius: 12px;
    font-weight: 600;
}

.MelotorPriceButton:hover {
    background: #4f46e5;
}

/* PRACTICE SECTION */
.MelotorPracticeSection {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.MelotorPracticeTextContent {
    flex: 1.2;
}

.MelotorPracticeTitle {
    font-size: 36px;
    margin-bottom: 20px;
}

.MelotorPracticeLead {
    font-size: 18px;
    color: #c4b5fd;
    margin-bottom: 40px;
}

.MelotorBenefitCards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.MelotorBenefitItem {
    background: #1f2937;
    padding: 25px;
    border-radius: 15px;
    border-bottom: 3px solid #4f46e5;
}

.MelotorBenefitTitle {
    font-size: 18px;
    margin-bottom: 10px;
    color: #f8fafc;
}

.MelotorBenefitDesc {
    font-size: 14px;
    color: #9ca3af;
}

.MelotorPracticeImageWrap {
    flex: 0.8;
}

.MelotorPracticeImg {
    border-radius: 30px;
    box-shadow: 20px 20px 0 #4f46e5;
}

/* QUOTE */
.MelotorExpertQuoteSection {
    padding: 80px 5%;
    background: #111827;
}

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

.MelotorSpeechBubble {
    background: #1e2937;
    padding: 50px;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.MelotorSpeechBubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50px;
    width: 40px;
    height: 40px;
    background: #1e2937;
    transform: rotate(45deg);
}

.MelotorQuoteText {
    font-size: 24px;
    font-style: italic;
    color: #f8fafc;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.MelotorQuoteAuthor strong {
    font-size: 18px;
    color: #4f46e5;
}

.MelotorQuoteAuthor span {
    font-size: 14px;
    color: #9ca3af;
}

/* AUDIENCE */
.MelotorAudienceSection {
    padding: 100px 5%;
    background: #0f172a;
}

.MelotorSectionIntro {
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto 40px;
}

.MelotorAudienceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.MelotorAudienceItem {
    background: #1f2937;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.MelotorAudienceIcon {
    font-size: 30px;
    background: #111827;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.MelotorAudienceLabel {
    font-size: 20px;
    margin-bottom: 5px;
    color: #c4b5fd;
}

.MelotorAudienceDetail {
    font-size: 15px;
    color: #d1d5db;
}

/* INFO BLOCKS */
.MelotorInfoBlockSection {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.MelotorInfoBlockTitle {
    font-size: 32px;
    margin-bottom: 25px;
    color: #4f46e5;
}

.MelotorInfoBlockSection p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #d1d5db;
}

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

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

.MelotorInfoList li::before {
    content: "•";
    color: #00ffff;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -5px;
}

.MelotorInfoBlockDark {
    background: #1f2937;
    max-width: 100%;
}

.MelotorStepsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.MelotorStepBox {
    background: #111827;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #00ffff;
}

/* FAQ */
.MelotorFaqSection {
    padding: 100px 5%;
    background: #0f172a;
}

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

.MelotorFaqItem {
    background: #1e2937;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.MelotorFaqQuestion {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
}

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

.MelotorFaqQuestion::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    color: #4f46e5;
}

.MelotorFaqItem[open] .MelotorFaqQuestion::after {
    content: '-';
}

.MelotorFaqAnswer {
    padding: 0 20px 20px;
    color: #9ca3af;
    border-top: 1px solid #374151;
    padding-top: 15px;
}

/* FORM */
.MelotorFormSection {
    padding: 100px 5%;
}

.MelotorFormBox {
    max-width: 700px;
    margin: 0 auto;
    background: #1e2937;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

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

.MelotorFormSubtitle {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 40px;
}

.MelotorFormField {
    margin-bottom: 20px;
}

.MelotorFormLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #c4b5fd;
}

.MelotorFormInput, .MelotorFormTextarea {
    width: 100%;
    padding: 15px;
    background: #111827;
    border: 1px solid #374151;
    border-radius: 10px;
    color: #f8fafc;
    font-size: 16px;
}

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

.MelotorFormPrivacy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.MelotorFormPrivacyLabel {
    font-size: 13px;
    color: #9ca3af;
}

.MelotorFormPrivacyLabel a {
    color: #4f46e5;
}

.MelotorSubmitButton {
    width: 100%;
    padding: 18px;
    background: #00ffff;
    color: #111827;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.MelotorSubmitButton:hover {
    background: #ffffff;
}

/* FOOTER */
.MelotorFooter {
    background: #0f172a;
    padding: 60px 5%;
    border-top: 1px solid #1f2937;
}

.MelotorFooterContent {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.MelotorFooterInfo p {
    margin-bottom: 10px;
}

.MelotorFooterCopy {
    font-weight: 700;
    font-size: 18px;
}

.MelotorFooterContact a {
    color: #4f46e5;
}

.MelotorFooterLinks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.MelotorFooterLink {
    font-size: 14px;
    color: #6b7280;
}

.MelotorFooterLink:hover {
    color: #f8fafc;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .MelotorHeroInner {
        flex-direction: column;
    }
    .MelotorPracticeLayout {
        flex-direction: column;
    }
    .MelotorHeroTitle {
        font-size: 36px;
    }
    .MelotorPriceCardFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .MelotorBurgerBtn {
        display: flex;
    }
    .MelotorMainNavigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111827;
        padding: 20px;
        border-bottom: 1px solid #374151;
    }
    .MelotorNavList {
        flex-direction: column;
        align-items: center;
    }
    .MelotorNavToggleCheckbox:checked ~ .MelotorMainNavigation {
        display: flex;
    }
    .MelotorHeroTitle {
        font-size: 32px;
    }
    .MelotorBenefitCards {
        grid-template-columns: 1fr;
    }
    .MelotorFormBox {
        padding: 30px;
    }
}