/* Reset & Basic Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep: #111827;
    --accent-primary: #4f46e5;
    --accent-soft: #c4b5fd;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --cyan-glow: #00ffff;
    --white: #ffffff;
    --transition: 0.4s ease-in-out;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Aurora Background Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.15), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(196, 181, 253, 0.1), transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05), transparent 50%);
    z-index: -1;
    pointer-events: none;
}

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

/* Typography */
.H1GeneralFlowRexopu {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--white), var(--accent-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.H2GeneralFlowRexopu {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
}

.H3GeneralFlowRexopu {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-soft);
}

.H4GeneralFlowRexopu {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.TextParagraphGeneralFlowRexopu {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.SubTitleGeneralFlowRexopu {
    font-size: 1.25rem;
    color: var(--accent-soft);
    margin-bottom: 25px;
    font-weight: 500;
}

.CenteredTextGeneralFlowRexopu {
    text-align: center;
}

/* Header */
.HeaderGeneralFlowRexopu {
    position: sticky;
    top: 0;
    background-color: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(248, 250, 252, 0.1);
}

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

.LogoGeneralFlowRexopu {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

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

.NavLinkGeneralFlowRexopu {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.NavLinkGeneralFlowRexopu:hover {
    color: var(--cyan-glow);
}

/* Mobile Menu */
.MenuCheckboxGeneralFlowRexopu {
    display: none;
}

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

.MenuButtonGeneralFlowRexopu span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.HeroSectionGeneralFlowRexopu {
    padding: 100px 0;
}

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

.HeroImageWrapperGeneralFlowRexopu {
    flex: 1;
    position: relative;
}

.HeroImgGeneralFlowRexopu {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.HeroBadgeGeneralFlowRexopu {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.HeroTextWrapperGeneralFlowRexopu {
    flex: 1.2;
}

.HeroButtonContainerGeneralFlowRexopu {
    margin-top: 35px;
}

.CtaButtonGeneralFlowRexopu {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--cyan-glow);
    color: var(--bg-deep);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.CtaButtonGeneralFlowRexopu:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 255, 255, 0.7);
}

/* Regular Practice Section */
.RegularPracticeSectionGeneralFlowRexopu {
    padding: 80px 0;
    background-color: rgba(17, 24, 39, 0.5);
}

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

.PracticeTextGeneralFlowRexopu {
    flex: 1.2;
}

.PracticeImageGeneralFlowRexopu {
    flex: 1;
}

.ContentImgGeneralFlowRexopu {
    width: 100%;
    border-radius: 20px;
}

.PracticeListGeneralFlowRexopu {
    list-style: none;
    margin-top: 30px;
}

.PracticeListItemGeneralFlowRexopu {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.ListMarkerGeneralFlowRexopu {
    width: 12px;
    height: 12px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--accent-primary);
}

.ListItemTextGeneralFlowRexopu strong {
    display: block;
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 5px;
}

/* Expert Section */
.ExpertSectionGeneralFlowRexopu {
    padding: 80px 0;
}

.ExpertCardGeneralFlowRexopu {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.ExpertImageContainerGeneralFlowRexopu {
    flex: 0 0 250px;
}

.ExpertImgGeneralFlowRexopu {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

.ExpertQuoteGeneralFlowRexopu {
    flex: 1;
}

.QuoteTextGeneralFlowRexopu {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
}

.ExpertNameGeneralFlowRexopu {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-soft);
    margin-bottom: 5px;
}

.ExpertBioGeneralFlowRexopu {
    color: var(--text-muted);
}

/* Deep Content Sections */
.DeepContentSectionGeneralFlowRexopu {
    padding: 100px 0;
}

.AltBgGeneralFlowRexopu {
    background-color: rgba(79, 70, 229, 0.03);
}

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

.InsideListGeneralFlowRexopu {
    margin: 25px 0;
    list-style: none;
    padding-left: 20px;
}

.InsideListGeneralFlowRexopu li {
    margin-bottom: 12px;
    color: var(--text-muted);
    position: relative;
}

.InsideListGeneralFlowRexopu li::before {
    content: "→";
    position: absolute;
    left: -25px;
    color: var(--accent-soft);
}

/* Cards Grid */
.ThreeCardsGridGeneralFlowRexopu {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.ContentCardGeneralFlowRexopu {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.ContentCardGeneralFlowRexopu:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-soft);
    transform: translateY(-5px);
}

.SmallTextGeneralFlowRexopu {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ Section */
.FaqSectionGeneralFlowRexopu {
    padding: 80px 0;
}

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

.FaqItemGeneralFlowRexopu {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.FaqSummaryGeneralFlowRexopu {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.FaqSummaryGeneralFlowRexopu::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--cyan-glow);
}

.FaqItemGeneralFlowRexopu[open] .FaqSummaryGeneralFlowRexopu::after {
    content: "−";
}

.FaqContentGeneralFlowRexopu {
    padding: 0 25px 25px;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Pricing Section */
.PricingSectionGeneralFlowRexopu {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.PricingGridGeneralFlowRexopu {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.PriceCardGeneralFlowRexopu {
    flex: 1;
    background: rgba(17, 24, 39, 0.8);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.HighlightCardGeneralFlowRexopu {
    border-color: var(--accent-primary);
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.1), transparent);
}

.PriceIconGeneralFlowRexopu {
    font-size: 2rem;
    color: var(--cyan-glow);
    margin-bottom: 20px;
}

.PriceTitleGeneralFlowRexopu {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.PriceAmountGeneralFlowRexopu {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
}

.PriceListDetailsGeneralFlowRexopu {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
    text-align: left;
}

.PriceListDetailsGeneralFlowRexopu li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.PriceListDetailsGeneralFlowRexopu li::before {
    content: "✓";
    color: var(--accent-soft);
}

.PriceCtaGeneralFlowRexopu {
    display: block;
    padding: 14px;
    border: 2px solid var(--accent-primary);
    text-decoration: none;
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.PriceCtaGeneralFlowRexopu:hover {
    background: var(--accent-primary);
}

/* Audience Section */
.AudienceSectionGeneralFlowRexopu {
    padding: 80px 0;
}

.SectionIntroGeneralFlowRexopu {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

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

.AudienceItemGeneralFlowRexopu {
    background: rgba(79, 70, 229, 0.1);
    padding: 25px;
    border-radius: 15px;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(196, 181, 253, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Form Section */
.FormSectionGeneralFlowRexopu {
    padding: 80px 0;
}

.FormContainerGeneralFlowRexopu {
    max-width: 700px;
    background: rgba(255, 255, 255, 0.02);
    padding: 60px;
    border-radius: 30px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ContactFormGeneralFlowRexopu {
    margin-top: 40px;
}

.FormGroupGeneralFlowRexopu {
    margin-bottom: 25px;
}

.FormGroupGeneralFlowRexopu label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--accent-soft);
}

.FormGroupGeneralFlowRexopu input,
.FormGroupGeneralFlowRexopu textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.FormGroupGeneralFlowRexopu input:focus,
.FormGroupGeneralFlowRexopu textarea:focus {
    border-color: var(--cyan-glow);
    background: rgba(255, 255, 255, 0.08);
}

.CheckboxGroupGeneralFlowRexopu {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.CheckboxGroupGeneralFlowRexopu a {
    color: var(--accent-soft);
}

.SubmitButtonGeneralFlowRexopu {
    width: 100%;
    padding: 16px;
    background: var(--cyan-glow);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transition: var(--transition);
    color: var(--bg-deep);
}

.SubmitButtonGeneralFlowRexopu:hover {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Footer */
.FooterGeneralFlowRexopu {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    background-color: #0d121c;
}

.FooterBrandGeneralFlowRexopu {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.FooterCopyGeneralFlowRexopu {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.FooterEmailGeneralFlowRexopu,
.FooterPhoneGeneralFlowRexopu {
    margin-bottom: 5px;
}

.FooterEmailGeneralFlowRexopu a {
    color: var(--accent-soft);
    text-decoration: none;
}

.FooterLinksGeneralFlowRexopu {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.FooterLinksGeneralFlowRexopu a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.FooterLinksGeneralFlowRexopu a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .HeroFlexGeneralFlowRexopu,
    .PracticeFlexGeneralFlowRexopu,
    .ExpertCardGeneralFlowRexopu {
        flex-direction: column;
        text-align: center;
    }

    .HeroFlexGeneralFlowRexopu {
        flex-direction: column-reverse;
    }

    .ThreeCardsGridGeneralFlowRexopu,
    .PricingGridGeneralFlowRexopu {
        flex-direction: column;
    }

    .HighlightCardGeneralFlowRexopu {
        transform: scale(1);
    }

    .PracticeListGeneralFlowRexopu {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .MenuButtonGeneralFlowRexopu {
        display: flex;
    }

    .NavGeneralFlowRexopu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-deep);
        transition: var(--transition);
        padding: 40px;
        z-index: 999;
    }

    .NavListGeneralFlowRexopu {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .MenuCheckboxGeneralFlowRexopu:checked ~ .NavGeneralFlowRexopu {
        left: 0;
    }

    .MenuCheckboxGeneralFlowRexopu:checked ~ .MenuButtonGeneralFlowRexopu span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .MenuCheckboxGeneralFlowRexopu:checked ~ .MenuButtonGeneralFlowRexopu span:nth-child(2) {
        opacity: 0;
    }
    .MenuCheckboxGeneralFlowRexopu:checked ~ .MenuButtonGeneralFlowRexopu span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .FormContainerGeneralFlowRexopu {
        padding: 40px 20px;
    }
}