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

html {
    scroll-behavior: smooth;
}

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

/* UTILS */
.XokirasFrameContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.Centered {
    text-align: center;
}

/* ANIMATED BAR */
.XokirasFrameAnimatedGradientBar {
    height: 4px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    background: linear-gradient(90deg, #22d3ee, #a7f3d0, #22d3ee, #a7f3d0);
    background-size: 300% 100%;
    animation: XokirasFrameBarAnim 8s ease infinite;
}

@keyframes XokirasFrameBarAnim {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* HEADER */
.XokirasFrameHeaderContainer {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.XokirasFrameLogoText {
    font-size: 28px;
    font-weight: 800;
    color: #22d3ee;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.XokirasFrameNavList {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.XokirasFrameNavLink {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

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

.XokirasFrameNavButton {
    text-decoration: none;
    background-color: #22d3ee;
    color: #0f172a;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    transition: box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.4);
}

.XokirasFrameNavButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.7);
}

/* BURGER MENU */
.XokirasFrameMobileMenuCheckbox {
    display: none;
}

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

.XokirasFrameBurgerButton span {
    width: 25px;
    height: 3px;
    background-color: #22d3ee;
    border-radius: 2px;
}

/* HERO SECTION */
.XokirasFrameHeroSection {
    padding: 100px 0;
    border-bottom: 1px solid rgba(167, 243, 208, 0.1);
}

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

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

.XokirasFrameHeroMainImg {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.XokirasFrameHeroBadge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #a7f3d0;
    color: #0f172a;
    padding: 5px 15px;
    font-weight: 800;
    font-size: 12px;
    border-radius: 50px;
    text-transform: uppercase;
    z-index: 5;
}

.XokirasFrameHeroTextContent {
    flex: 1.2;
}

.XokirasFrameHeroMainTitle {
    font-size: 48px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

.XokirasFrameHeroSubtitle {
    font-size: 20px;
    color: #22d3ee;
    margin-bottom: 20px;
    font-weight: 600;
}

.XokirasFrameHeroParagraph {
    margin-bottom: 20px;
    color: #94a3b8;
    font-size: 17px;
}

.XokirasFrameHeroCtaButton {
    display: inline-block;
    padding: 18px 40px;
    background-color: #22d3ee;
    color: #0f172a;
    text-decoration: none;
    font-weight: 800;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.5);
    transition: all 0.3s;
}

.XokirasFrameHeroCtaButton:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.8);
    transform: scale(1.05);
}

/* TEXT CONTENT SECTIONS */
.XokirasFrameTextContentSection {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.XokirasFrameContentBlock {
    margin-bottom: 80px;
    max-width: 900px;
}

.XokirasFrameSectionHeading {
    font-size: 36px;
    color: #a7f3d0;
    margin-bottom: 30px;
}

.XokirasFrameSectionText {
    font-size: 18px;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.XokirasFrameHighlightPhrase {
    color: #22d3ee;
    font-weight: 700;
    border-bottom: 1px solid #22d3ee;
}

.XokirasFrameUnorderedList {
    margin: 25px 0;
    padding-left: 20px;
}

.XokirasFrameListItem {
    margin-bottom: 15px;
    position: relative;
    list-style: none;
}

.XokirasFrameListItem::before {
    content: "→";
    position: absolute;
    left: -25px;
    color: #a7f3d0;
}

/* REGULAR PRACTICE */
.XokirasFrameRegularPracticeSection {
    padding: 100px 0;
}

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

.XokirasFrameRegularPracticeText {
    flex: 1.5;
}

.XokirasFrameRegularPracticeImage {
    flex: 1;
}

.XokirasFrameImgFullWidth {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(167, 243, 208, 0.3);
}

.XokirasFrameBenefitsGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.XokirasFrameBenefitItem {
    flex: 1 1 45%;
    background: rgba(30, 41, 59, 0.5);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.05);
}

.XokirasFrameBenefitTitle {
    color: #22d3ee;
    margin-bottom: 10px;
    font-size: 20px;
}

.XokirasFrameBenefitText {
    font-size: 15px;
    color: #94a3b8;
}

/* FAQ SECTION */
.XokirasFrameFaqSection {
    padding: 80px 0;
    background-color: #0f172a;
}

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

.XokirasFrameFaqItem {
    background: #1e293b;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.XokirasFrameFaqItem:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}

.XokirasFrameFaqSummary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.XokirasFrameFaqSummary::after {
    content: "+";
    color: #22d3ee;
    font-size: 24px;
}

.XokirasFrameFaqItem[open] .XokirasFrameFaqSummary::after {
    content: "-";
}

.XokirasFrameFaqContent {
    padding: 0 20px 20px;
    color: #cbd5e1;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
}

/* SERVICES SECTION */
.XokirasFrameServicesSection {
    padding: 100px 0;
}

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

.XokirasFramePriceCard {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #1e293b;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.XokirasFramePriceCard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
}

.CardBlue::before { background-color: #3b82f6; }
.CardCyan::before { background-color: #22d3ee; }
.CardMint::before { background-color: #a7f3d0; }

.XokirasFramePriceHeader {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.XokirasFramePriceValue {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
}

.XokirasFramePriceFeatures {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.XokirasFramePriceFeatures li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.XokirasFramePriceFeatures li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22d3ee;
}

.XokirasFramePriceButton {
    display: block;
    text-align: center;
    padding: 15px;
    border: 2px solid #22d3ee;
    color: #22d3ee;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s;
}

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

/* TARGET SECTION */
.XokirasFrameTargetSection {
    padding: 100px 0;
    background-color: #0c1222;
}

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

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

.XokirasFrameAvatarItem {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    background: #1e293b;
    padding: 30px;
    border-radius: 20px;
}

.XokirasFrameAvatarImg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #22d3ee;
}

.XokirasFrameAvatarName {
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

.XokirasFrameAvatarDesc {
    color: #94a3b8;
    font-size: 15px;
}

/* EXPERT SECTION */
.XokirasFrameExpertSection {
    padding: 100px 0;
}

.XokirasFrameExpertQuoteCard {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 60px;
    border-radius: 30px;
    position: relative;
    border: 1px solid rgba(34, 211, 238, 0.1);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.XokirasFrameQuoteSymbol {
    font-size: 80px;
    color: #22d3ee;
    opacity: 0.3;
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 40px;
}

.XokirasFrameQuoteText {
    font-size: 24px;
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.XokirasFrameQuoteAuthor {
    font-size: 20px;
    font-weight: 800;
    color: #a7f3d0;
}

.XokirasFrameQuoteSubline {
    font-size: 14px;
    color: #22d3ee;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* FORM SECTION */
.XokirasFrameFormSection {
    padding: 100px 0;
    background: #1e293b;
}

.XokirasFrameFormWrapper {
    max-width: 600px;
    margin: 0 auto;
}

.XokirasFrameMainForm {
    background: #0f172a;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.XokirasFrameFormGroup {
    margin-bottom: 20px;
}

.XokirasFrameFormLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #22d3ee;
}

.XokirasFrameFormInput,
.XokirasFrameFormTextarea {
    width: 100%;
    padding: 15px;
    background: #1e293b;
    border: 1px solid rgba(226, 232, 240, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
}

.XokirasFrameFormTextarea {
    min-height: 120px;
    resize: vertical;
}

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

.XokirasFrameCheckboxLabel {
    font-size: 13px;
    color: #94a3b8;
}

.XokirasFrameCheckboxLabel a {
    color: #22d3ee;
}

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

.XokirasFrameFormSubmitButton:hover {
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.7);
    transform: translateY(-2px);
}

/* FOOTER */
.XokirasFrameFooter {
    padding: 60px 0;
    background-color: #0c1222;
    border-top: 1px solid rgba(226, 232, 240, 0.05);
}

.XokirasFrameFooterContent {
    text-align: center;
}

.XokirasFrameFooterLogo {
    font-size: 24px;
    font-weight: 900;
    color: #22d3ee;
    margin-bottom: 20px;
}

.XokirasFrameFooterCopyright {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
}

.XokirasFrameFooterEmail, .XokirasFrameFooterPhone {
    font-size: 15px;
    color: #e2e8f0;
    margin-bottom: 5px;
}

.XokirasFrameFooterEmail a { color: #22d3ee; text-decoration: none; }

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

.XokirasFrameFooterLink {
    text-decoration: none;
    color: #64748b;
    font-size: 13px;
    transition: color 0.3s;
}

.XokirasFrameFooterLink:hover {
    color: #a7f3d0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .XokirasFrameHeroWrapper,
    .XokirasFrameRegularPracticeWrapper {
        flex-direction: column;
        text-align: center;
    }

    .XokirasFrameHeroMainTitle {
        font-size: 36px;
    }

    .XokirasFrameHeroImageContainer {
        order: -1;
    }
}

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

    .XokirasFrameNavigationMenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        display: none;
        padding: 20px;
        border-bottom: 1px solid rgba(34, 211, 238, 0.2);
    }

    .XokirasFrameNavList {
        flex-direction: column;
        text-align: center;
    }

    .XokirasFrameMobileMenuCheckbox:checked ~ .XokirasFrameNavigationMenu {
        display: block;
    }
    
    .XokirasFrameSectionHeading {
        font-size: 28px;
    }
}