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

html {
    scroll-behavior: smooth;
}

body.rootbaseBodyElement {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #3f1d2e;
    background-color: #ffe4e6;
    overflow-x: hidden;
}

/* Layout Containers */
.rootbaseSectionContainer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

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

.rootbaseLogoText {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ec4899;
}

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

.rootbaseNavList {
    list-style: none;
    display: flex;
    gap: 20px;
}

.rootbaseNavLink {
    color: #f9a8d4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.rootbaseNavLink:hover {
    color: #00ffff;
}

.rootbaseBurgerInput, .rootbaseBurgerLabel {
    display: none;
}

/* Decorative Panel (Variant 8) */
.rootbaseHeaderPanel {
    width: 100%;
    height: 15px;
    background-color: #f9a8d4;
    opacity: 0.6;
}

/* Buttons (Cyan Glow Style) */
.rootbaseCyanButton {
    display: inline-block;
    padding: 14px 30px;
    background-color: #3f1d2e;
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    border: 2px solid #00ffff;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    cursor: pointer;
    text-align: center;
}

.rootbaseCyanButton:hover {
    background-color: #00ffff;
    color: #3f1d2e;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.rootbaseCyanButton.small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.rootbaseCyanButton.full {
    width: 100%;
}

/* Hero Section (Variant 10: Photo right, text left) */
.rootbaseHeroBlock {
    background-color: #ffe4e6;
    padding: 80px 0;
}

.rootbaseHeroInner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.rootbaseHeroContent {
    flex: 1;
}

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

.rootbaseHeroImg {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #f9a8d4;
    box-shadow: 0 10px 30px rgba(63, 29, 46, 0.15);
}

.rootbaseHeroTitle {
    font-size: 3rem;
    color: #3f1d2e;
    line-height: 1.1;
    margin-bottom: 25px;
}

.rootbaseHeroText {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #3f1d2e;
}

.rootbaseHeroCta {
    margin-top: 30px;
}

/* Expert Section (Variant 9: Card quote) */
.rootbaseExpertBlock {
    background-color: #f9a8d4;
}

.rootbaseQuoteCard {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(63, 29, 46, 0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.rootbaseMainQuote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #3f1d2e;
    position: relative;
}

.rootbaseMainQuote::before {
    content: "“";
    font-size: 5rem;
    color: #ec4899;
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: -20px;
}

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

.rootbaseAuthorName {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ec4899;
}

.rootbaseAuthorTitle {
    font-size: 0.9rem;
    color: #7a5f6b;
}

/* Benefits Section (Variant 4: Text left, image right, mini-cards) */
.rootbaseBenefitsBlock {
    background-color: #ffffff;
}

.rootbaseBenefitsInner {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.rootbaseBenefitsTextSide {
    flex: 1;
    padding: 80px 40px;
}

.rootbaseBenefitsImageSide {
    flex: 1;
}

.rootbaseSideImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rootbaseSectionTitle {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #3f1d2e;
}

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

.rootbaseSectionSubtitle {
    margin-bottom: 40px;
    color: #ec4899;
    font-weight: 500;
}

.rootbaseBenefitMiniCard {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: #ffe4e6;
    padding: 20px;
    border-radius: 12px;
}

.rootbaseBenefitIcon {
    font-size: 2rem;
}

.rootbaseBenefitLabel {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rootbaseBenefitDesc {
    font-size: 0.95rem;
}

/* Pricing Section (Variant 14: Minimalist, large price) */
.rootbasePricingBlock {
    background-color: #ffe4e6;
}

.rootbasePriceGrid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.rootbasePriceCard {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    width: 320px;
    text-align: center;
    border: 1px solid #f9a8d4;
    transition: transform 0.3s;
}

.rootbasePriceCard:hover {
    transform: scale(1.03);
}

.rootbasePriceCard.highlighted {
    border: 2px solid #ec4899;
    position: relative;
}

.rootbasePriceLevel {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.rootbasePriceValue {
    font-size: 2.8rem;
    font-weight: 800;
    color: #3f1d2e;
    margin-bottom: 25px;
}

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

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

.rootbasePriceFeatures li:last-child {
    border-bottom: none;
}

/* Target Section (Variant 7: Micro-cards) */
.rootbaseTargetBlock {
    background-color: #3f1d2e;
    color: #ffe4e6;
}

.rootbaseTargetBlock .rootbaseSectionTitle {
    color: #f9a8d4;
}

.rootbaseTargetIntro {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.rootbaseMicroCardGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.rootbaseMicroCard {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid #ec4899;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rootbaseMicroIcon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.rootbaseMicroText {
    font-size: 0.9rem;
}

/* FAQ Section (Variant 2: Details/Summary) */
.rootbaseFaqBlock {
    background-color: #ffffff;
}

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

.rootbaseFaqItem {
    margin-bottom: 15px;
    border-bottom: 1px solid #ffe4e6;
}

.rootbaseFaqSummary {
    padding: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: #3f1d2e;
}

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

.rootbaseFaqSummary::after {
    content: "+";
    position: absolute;
    right: 20px;
    color: #ec4899;
}

.rootbaseFaqItem[open] .rootbaseFaqSummary::after {
    content: "-";
}

.rootbaseFaqAnswer {
    padding: 0 20px 20px 20px;
    color: #7a5f6b;
}

/* Text Sections */
.rootbaseTextSection {
    background-color: #ffe4e6;
}

.rootbaseTextSectionAlt {
    background-color: #f9a8d4;
}

.rootbaseTextContent p {
    margin-bottom: 20px;
}

.rootbaseSubTitle {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #ec4899;
}

.rootbaseSimpleList {
    list-style: none;
    margin-bottom: 25px;
}

.rootbaseSimpleList li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.rootbaseSimpleList li::before {
    content: "✔";
    color: #ec4899;
    position: absolute;
    left: 0;
}

/* Form Section */
.rootbaseFormBlock {
    background-color: #3f1d2e;
    color: #ffffff;
}

.rootbaseFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    color: #3f1d2e;
}

.rootbaseFormTitle {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.rootbaseFormSubtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #7a5f6b;
}

.rootbaseFormField {
    margin-bottom: 20px;
}

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

.rootbaseFormInput, .rootbaseFormTextarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #f9a8d4;
    border-radius: 8px;
    font-size: 1rem;
}

.rootbaseFormTextarea {
    height: 120px;
    resize: vertical;
}

.rootbaseCheckboxField {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
}

.rootbaseDisclaimer {
    margin-top: 20px;
    font-size: 0.75rem;
    text-align: center;
    color: #7a5f6b;
}

/* Footer */
.rootbaseFooter {
    background-color: #1a0c14;
    color: #f9a8d4;
    padding: 60px 0 30px;
}

.rootbaseFooterTop {
    text-align: center;
    margin-bottom: 40px;
}

.rootbaseFooterLinks {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid #3f1d2e;
    padding-top: 30px;
}

.rootbaseFooterLinks a {
    color: #ffe4e6;
    text-decoration: none;
    font-size: 0.8rem;
}

.rootbaseFooterLinks a:hover {
    color: #00ffff;
}

/* Responsive */
@media (max-width: 992px) {
    .rootbaseHeroInner {
        flex-direction: column;
    }
    .rootbaseBenefitsInner {
        flex-direction: column;
    }
    .rootbaseHeroTitle {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .rootbaseNavList {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #3f1d2e;
        padding: 20px;
        border-bottom: 2px solid #ec4899;
    }

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

    .rootbaseBurgerLabel span {
        width: 25px;
        height: 3px;
        background-color: #f9a8d4;
    }

    .rootbaseBurgerInput:checked ~ .rootbaseNavList {
        display: flex;
    }

    .rootbaseQuoteCard {
        padding: 30px;
    }
}