/*
 * Modusthride - CSS Style Sheet
 * Theme: Dark Carbon with Turquoise Glow
 * No JS used for interactivity
 */

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

/* DISCLAIMER */
.DisclaimerWrapper {
    background: #1f2937;
    border-bottom: 2px solid #00f5ff;
    padding: 10px 20px;
}

.DisclaimerContainer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.DisclaimerText {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* HEADER */
.MainHeaderSection {
    background: rgba(18, 18, 18, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.BrandLogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00f5ff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.NavigationElement .NavListItems {
    display: flex;
    gap: 25px;
}

.NavLinkItem {
    color: #f3f4f6;
    font-weight: 500;
    font-size: 1rem;
}

.NavLinkItem:hover {
    color: #00f5ff;
}

.HeaderBottomBorder {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.3), transparent);
}

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

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

.BurgerIconLabel span {
    width: 25px;
    height: 3px;
    background: #00f5ff;
    border-radius: 2px;
}

/* HERO SECTION */
.HeroBlockSection {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.HeroContentFlex {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.HeroTextPart {
    flex: 1;
}

.HeroImagePart {
    flex: 1;
}

.HeroMainTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

.HeroDescriptionText {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 20px;
}

.HeroCtaWrapper {
    margin-top: 35px;
}

.HeroPrimaryBtn {
    background: #00f5ff;
    color: #000;
    padding: 15px 40px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

.HeroPrimaryBtn:hover {
    transform: scale(1.05);
    background: #00e0eb;
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.6);
}

.HeroMainGraphic {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(0, 245, 255, 0.1);
}

.HeroFeatureCardsRow {
    display: flex;
    gap: 30px;
}

.HeroFeatureCardItem {
    flex: 1;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #00f5ff;
    transition: transform 0.3s ease;
}

.HeroFeatureCardItem:hover {
    transform: translateY(-10px);
}

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

.HeroCardTitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}

.HeroCardDesc {
    font-size: 0.95rem;
    color: #9ca3af;
}

/* EXPERT WORD */
.ExpertWordSection {
    background: linear-gradient(45deg, #121212, #1f2937);
    padding: 100px 20px;
}

.ExpertInnerWrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.QuoteIconVisual {
    font-size: 6rem;
    color: #00f5ff;
    opacity: 0.2;
    height: 60px;
    line-height: 1;
}

.ExpertQuoteText {
    font-size: 1.8rem;
    font-style: italic;
    color: #f3f4f6;
    margin-bottom: 30px;
}

.ExpertNameSignature {
    font-size: 1.1rem;
    color: #00f5ff;
    font-weight: bold;
}

/* FAQ SECTION */
.FaqDetailedSection {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.SectionHeadingH2 {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.FaqGridContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.FaqCardElement {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

.FaqDetailsObject {
    padding: 20px;
}

.FaqSummaryTitle {
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    color: #00f5ff;
    list-style: none;
}

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

.FaqAnswerContent {
    margin-top: 15px;
    color: #d1d5db;
    border-top: 1px solid #333;
    padding-top: 15px;
}

/* PRICING SECTION */
.PricingModuleSection {
    padding: 100px 20px;
    background: #080808;
}

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

.PriceCardItem {
    flex: 1;
    background: #111;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #222;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.PriceCardItem:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: #00f5ff;
}

.FeaturedPriceCard {
    background: #161d21;
    border: 2px solid #00f5ff;
    position: relative;
    transform: scale(1.05);
}

.PriceCardType {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.PriceValueTag {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00f5ff;
    margin-bottom: 30px;
}

.PriceFeaturesList {
    margin-bottom: 40px;
    text-align: left;
}

.PriceFeaturesList li {
    margin-bottom: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
}

.PriceFeaturesList li::before {
    content: "✓";
    margin-right: 10px;
    color: #00f5ff;
}

.PriceOrderBtn {
    display: block;
    padding: 15px;
    border: 1px solid #00f5ff;
    color: #00f5ff;
    border-radius: 8px;
    font-weight: bold;
}

.HighlightedBtn {
    background: #00f5ff;
    color: #000;
}

/* TARGET AUDIENCE - TIMELINE */
.TargetAudienceSection {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.TimelineWrapperContainer {
    position: relative;
    padding-left: 50px;
}

.TimelineVerticalBar {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00f5ff;
}

.TimelineEntryItem {
    position: relative;
    margin-bottom: 50px;
}

.TimelinePointMark {
    position: absolute;
    left: -37px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: #0c0c0c;
    border: 3px solid #00f5ff;
    border-radius: 50%;
}

.TimelineStepTitle {
    font-size: 1.4rem;
    color: #00f5ff;
    margin-bottom: 10px;
}

.TimelineStepDesc {
    color: #9ca3af;
}

/* EXTRA TEXT SECTIONS */
.ExtraTextContentSection {
    padding: 100px 20px;
}

.AlternatingBg {
    background: #111;
}

.ExtraSectionContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.TwoColTextLayout {
    display: flex;
    gap: 40px;
}

.BodyParagraphText {
    flex: 1;
    font-size: 1.1rem;
    color: #d1d5db;
}

.SimpleBulletList {
    flex: 1;
}

.SimpleBulletList li {
    background: #1a1a1a;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    color: #f3f4f6;
}

/* REGULAR PRACTICE */
.RegularPracticeSection {
    padding: 100px 20px;
    background: linear-gradient(0deg, #0c0c0c, #1a1a1a);
}

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

.PracticeTextContent {
    flex: 1.2;
}

.PracticeImageContent {
    flex: 0.8;
}

.PracticeIllustrationImg {
    width: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    border: 5px solid #00f5ff;
}

.PracticeCardsSmallGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.MiniPracticeCard {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
}

.MiniIconSpan {
    font-size: 1.5rem;
}

.MiniCardTitle {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.MiniCardDesc {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* FORM SECTION */
.ContactFormSection {
    padding: 100px 20px;
    background: #080808;
}

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

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

.MainContactForm {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
}

.FormFieldGroup {
    margin-bottom: 25px;
}

.FormLabelElement {
    display: block;
    margin-bottom: 8px;
    color: #00f5ff;
}

.FormInputElement, .FormTextareaElement {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #444;
    padding: 12px 15px;
    color: #fff;
    border-radius: 5px;
}

.FormInputElement:focus, .FormTextareaElement:focus {
    outline: none;
    border-color: #00f5ff;
}

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

.CheckboxLabelText {
    font-size: 0.9rem;
    color: #9ca3af;
}

.PolicyLink {
    color: #00f5ff;
}

.FormSubmitButton {
    width: 100%;
    background: #00f5ff;
    color: #000;
    padding: 18px;
    border: none;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 245, 255, 0.3);
}

.FormSubmitButton:hover {
    background: #fff;
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.4);
}

/* FOOTER */
.MainSiteFooter {
    background: #050505;
    padding: 80px 20px;
    border-top: 1px solid #222;
    text-align: center;
}

.FooterBrandName {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00f5ff;
    margin-bottom: 20px;
}

.FooterCopyrightText, .FooterContactEmail, .FooterPhoneText {
    color: #6b7280;
    margin-bottom: 10px;
}

.FooterMailLink {
    color: #00f5ff;
}

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

.FooterNavLink {
    color: #9ca3af;
    font-size: 0.85rem;
}

.FooterNavLink:hover {
    color: #00f5ff;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .HeroContentFlex, .PracticeFlexContainer {
        flex-direction: column;
    }
    .HeroMainTitle {
        font-size: 2.5rem;
    }
    .PricingCardsFlex {
        flex-direction: column;
        align-items: center;
    }
    .PriceCardItem {
        width: 100%;
        max-width: 450px;
    }
    .TwoColTextLayout {
        flex-direction: column;
    }
    .FeaturedPriceCard {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .BurgerIconLabel {
        display: flex;
    }
    .NavigationElement {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111;
        padding: 20px;
        border-bottom: 1px solid #00f5ff;
    }
    .NavListItems {
        flex-direction: column;
        text-align: center;
    }
    #MobileMenuToggle:checked ~ .NavigationElement {
        display: block;
    }
    .HeroFeatureCardsRow {
        flex-direction: column;
    }
    .PracticeCardsSmallGrid {
        grid-template-columns: 1fr;
    }
}