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

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
}

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

/* Header Styles */
.HeaderMainWrapper {
    background-color: #0f172a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.LogoTextBrandName {
    font-size: 1.8rem;
    font-weight: 800;
    color: #22d3ee;
    letter-spacing: 1px;
}

.NavigationListItems {
    display: flex;
    list-style: none;
    gap: 25px;
}

.NavigationLinkItem {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.NavigationLinkItem:hover {
    color: #22d3ee;
}

.DecorativeGradientStrip {
    height: 4px;
    background: linear-gradient(90deg, #22d3ee, #a7f3d0, #0f172a);
    width: 100%;
}

/* Burger Menu (No JS) */
.BurgerToggleInput {
    display: none;
}

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

.BurgerIconLabel span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #22d3ee;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .BurgerIconLabel {
        display: flex;
    }
    .NavigationMenuBlock {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #0f172a;
        transition: 0.4s;
    }
    .NavigationListItems {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .BurgerToggleInput:checked ~ .NavigationMenuBlock {
        left: 0;
    }
}

/* Hero Section */
.HeroSectionWrapper {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.HeroLayoutGridContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.HeroImageColumnLeft {
    flex: 1 1 450px;
}

.HeroFeaturedImageElement {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.1);
    object-fit: cover;
}

.HeroContentColumnRight {
    flex: 1 1 500px;
}

.HeroPrimaryHeadline {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #f8fafc;
}

.HeroIntroductoryParagraph {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #94a3b8;
}

.HeroSecondaryParagraph {
    margin-bottom: 30px;
}

.HeroAdvantageCheckList {
    list-style: none;
    margin-bottom: 40px;
}

.HeroAdvantageListItem {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 500;
}

.HeroAdvantageListItem::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-weight: bold;
}

.HeroMainActionButton {
    display: inline-block;
    padding: 18px 40px;
    background-color: #22d3ee;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
    transition: all 0.3s ease;
}

.HeroMainActionButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.6);
}

/* Pricing Section */
.PricingPackagesSection {
    padding: 100px 0;
    background-color: #1e293b;
}

.PricingSectionHeaderContainer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.PricingSectionTitleMain {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #22d3ee;
}

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

.PricingVerticalCardItem {
    background-color: #0f172a;
    border: 1px solid #334155;
    padding: 40px 30px;
    border-radius: 24px;
    flex: 1 1 300px;
    max-width: 360px;
    text-align: center;
    transition: transform 0.3s ease;
}

.PricingCardItemHighlighted {
    border-color: #22d3ee;
    transform: scale(1.05);
}

.PricingCardIconWrapper {
    margin-bottom: 25px;
}

.PricingCardIconImage {
    border-radius: 12px;
}

.PricingCardPackageTitle {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #f8fafc;
}

.PricingCardPriceDisplay {
    font-size: 2rem;
    font-weight: 800;
    color: #22d3ee;
    margin-bottom: 25px;
}

.PricingCardFeaturesList {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
}

.PricingCardFeatureEntry {
    padding: 10px 0;
    border-bottom: 1px solid #1e293b;
    font-size: 0.95rem;
}

.PricingCardActionButton {
    display: block;
    width: 100%;
    padding: 15px;
    border: 2px solid #22d3ee;
    color: #22d3ee;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.PricingCardActionButton:hover {
    background-color: #22d3ee;
    color: #0f172a;
}

/* FAQ Section */
.FaqSectionWrapperContainer {
    padding: 100px 0;
    max-width: 1000px;
    margin: 0 auto;
}

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

.FaqSectionTitleHeadline {
    font-size: 2.5rem;
    color: #a7f3d0;
}

.FaqGridItemsLayout {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.FaqAccordionDetailItem {
    background-color: #1e293b;
    border-radius: 12px;
    padding: 15px 25px;
    border: 1px solid #334155;
}

.FaqAccordionSummaryTitle {
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    color: #e2e8f0;
}

.FaqAccordionContentText {
    padding: 20px 0 10px;
    color: #94a3b8;
    border-top: 1px solid #334155;
    margin-top: 15px;
}

/* Expert Quote Section */
.ExpertQuoteSectionWrapper {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1e293b, #0f172a);
}

.ExpertQuoteContentContainer {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.ExpertSpeechBubbleBlock {
    position: relative;
    background-color: #22d3ee;
    color: #0f172a;
    padding: 60px;
    border-radius: 40px 40px 40px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.ExpertQuoteTextContent {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.4;
}

.ExpertAuthorNameLabel {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
}

.ExpertAuthorTitleLabel {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Additional Tips Sections */
.AdditionalTipsSectionBlock {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.AdditionalTipsHeaderGroup {
    text-align: center;
    margin-bottom: 80px;
}

.AdditionalTipsSectionTitle {
    font-size: 2.8rem;
    color: #22d3ee;
    margin-bottom: 10px;
}

.TipsCategoryContainerWrapper {
    margin-bottom: 80px;
}

.TipsCategorySubHeading {
    font-size: 1.8rem;
    margin-bottom: 40px;
    border-left: 5px solid #a7f3d0;
    padding-left: 20px;
}

.TipsCardsGridDisplay {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.TipSmallCardItem {
    flex: 1 1 300px;
    background-color: #1e293b;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #334155;
    transition: 0.3s;
}

.TipSmallCardItem:hover {
    border-color: #a7f3d0;
}

.TipCardParagraphText {
    font-weight: 500;
}

.TipsDetailedTextContent {
    column-count: 2;
    column-gap: 40px;
}

@media (max-width: 800px) {
    .TipsDetailedTextContent {
        column-count: 1;
    }
}

.TipsBodyLongParagraph {
    margin-bottom: 20px;
    color: #cbd5e1;
    text-align: justify;
}

/* Target Audience */
.TargetAudienceSection {
    padding: 100px 0;
    background-color: #0f172a;
}

.TargetAudienceContentContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.TargetAudienceTitleHeading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.TargetAudienceIntroDescription {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #94a3b8;
}

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

.TargetAudienceMicroCard {
    background-color: #1e293b;
    padding: 30px;
    border-radius: 20px;
    flex: 1 1 180px;
    max-width: 200px;
    text-align: center;
    border: 1px dashed #334155;
}

.TargetAudienceIconPlaceholder {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.TargetAudienceMicroCardText {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Benefits Section */
.BenefitsSectionContainer {
    padding: 100px 0;
    background-color: #1e293b;
}

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

.BenefitsContentColumnLeft {
    flex: 1 1 500px;
}

.BenefitsImageColumnRight {
    flex: 1 1 400px;
}

.BenefitsSectionHeadline {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #a7f3d0;
}

.BenefitsAccentMarkerList {
    list-style: none;
}

.BenefitsAccentMarkerItem {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid #22d3ee;
}

.BenefitsItemBoldTitle {
    display: block;
    color: #22d3ee;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.BenefitsFeaturedImageElement {
    width: 100%;
    border-radius: 30px;
}

/* Contact Form */
.ContactFormSectionWrapper {
    padding: 100px 20px;
}

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

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

.ContactFormSubHeadingText {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 40px;
}

.ContactFormInputRow {
    margin-bottom: 25px;
}

.ContactFormInputLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #cbd5e1;
}

.ContactFormInputFieldControl,
.ContactFormTextareaControl {
    width: 100%;
    background-color: #0f172a;
    border: 2px solid #334155;
    border-radius: 12px;
    padding: 15px;
    color: #fff;
    font-size: 1rem;
}

.ContactFormInputFieldControl:focus,
.ContactFormTextareaControl:focus {
    border-color: #22d3ee;
    outline: none;
}

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

.ContactFormCheckboxControl {
    margin-top: 5px;
}

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

.ContactFormInlineLink {
    color: #22d3ee;
    text-decoration: underline;
}

.ContactFormSubmitButtonAction {
    width: 100%;
    padding: 18px;
    background-color: #22d3ee;
    color: #0f172a;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.3);
    transition: 0.3s;
}

.ContactFormSubmitButtonAction:hover {
    background-color: #a7f3d0;
    box-shadow: 0 0 25px rgba(167, 243, 208, 0.5);
}

/* Footer */
.FooterMainContainer {
    background-color: #020617;
    padding: 80px 20px;
    border-top: 1px solid #1e293b;
}

.FooterInnerLayout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

.FooterLogoText {
    font-size: 2rem;
    font-weight: 900;
    color: #22d3ee;
    margin-bottom: 20px;
}

.FooterCopyrightText,
.FooterContactEmail,
.FooterContactPhone {
    color: #64748b;
    margin-bottom: 10px;
}

.FooterMailLink {
    color: #e2e8f0;
    text-decoration: none;
}

.FooterPolicyLinksList {
    list-style: none;
}

.FooterPolicyLinkItem {
    display: block;
    text-decoration: none;
    color: #94a3b8;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.FooterPolicyLinkItem:hover {
    color: #22d3ee;
}

/* RESPONSIVE TRWEAKS */
@media (max-width: 600px) {
    .HeroPrimaryHeadline {
        font-size: 2.2rem;
    }
    .ContactFormContainerBox {
        padding: 30px 20px;
    }
    .ExpertSpeechBubbleBlock {
        padding: 30px;
    }
}

/* Batch legal/thank pages shared styles */
.policy-page,
.legal-page,
.thank-page {
    min-height: 100vh;
}

.policy-shell,
.legal-container,
.thank-shell {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) 0;
}

.policy-card,
.thank-card {
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 28px;
    background: var(--card-bg, var(--plasma-card, var(--white, #ffffff)));
    color: inherit;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
    padding: clamp(26px, 5vw, 56px);
}

.policy-title,
.thank-card h1 {
    margin: 0 0 18px;
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, currentColor)))));
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.policy-subtitle,
.policy-lead,
.thank-eyebrow,
.thank-card p {
    color: var(--text-secondary, var(--text-dim, var(--plasma-subtext, var(--gray-text, inherit))));
}

.policy-lead,
.thank-card > p {
    font-size: clamp(1rem, 2vw, 1.16rem);
    margin-bottom: 28px;
}

.policy-section {
    padding: 24px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.policy-section h2,
.thank-next h2 {
    margin: 0 0 12px;
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, currentColor)))));
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

.policy-section p,
.thank-next p {
    margin: 0 0 12px;
    line-height: 1.75;
}

.policy-nav,
.thank-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.policy-back-link,
.thank-button,
.thank-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.thank-button,
.policy-nav .policy-back-link:first-child {
    background: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #2563eb)))));
    color: var(--main-bg, var(--plasma-bg, #ffffff));
    border-color: transparent;
}

.thank-card {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.thank-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #22c55e)))));
    color: var(--main-bg, var(--plasma-bg, #ffffff));
    font-size: 42px;
    font-weight: 900;
}

.thank-next {
    margin: 28px auto 0;
    padding: 22px;
    border-radius: 20px;
    background: rgba(148, 163, 184, 0.12);
    text-align: left;
}

.policy-card a,
.thank-card a {
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, currentColor)))));
}

@media (max-width: 680px) {
    .policy-shell,
    .legal-container,
    .thank-shell {
        width: min(100% - 20px, 1040px);
        padding: 28px 0;
    }

    .policy-card,
    .thank-card {
        border-radius: 20px;
        padding: 22px;
    }

    .policy-nav,
    .thank-actions {
        flex-direction: column;
    }

    .policy-back-link,
    .thank-button,
    .thank-link {
        width: 100%;
    }
}
/* Batch legal readability patch */
.policy-page,
.legal-page,
.thank-page {
    background-color: var(--main-bg, var(--plasma-bg, var(--behogino-bg, var(--berry-soft, #0f172a))));
}

.policy-card,
.thank-card {
    background: rgba(255, 255, 255, 0.97) !important;
    color: #172033 !important;
    border-color: rgba(15, 23, 42, 0.10) !important;
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.24) !important;
}

.policy-title,
.thank-card h1,
.policy-section h2,
.thank-next h2 {
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #2563eb))))) !important;
    -webkit-text-fill-color: currentColor !important;
}

.policy-subtitle,
.policy-lead,
.thank-eyebrow,
.thank-card p,
.policy-section p,
.thank-next p {
    color: #334155 !important;
}

.policy-section {
    border-top-color: rgba(15, 23, 42, 0.12) !important;
}

.policy-card a,
.thank-card a {
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #2563eb))))) !important;
}

.policy-nav .policy-back-link:first-child,
.thank-button {
    color: #06111f !important;
}

.thank-next {
    background: #f1f5f9 !important;
}

/* Batch mobile overflow safety */
@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    body * {
        min-width: 0;
    }

    img,
    video,
    svg {
        max-width: 100%;
        height: auto;
    }

    h1,
    h2,
    .policy-title,
    .thank-card h1 {
        overflow-wrap: anywhere;
        word-break: normal;
    }
}
