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

:root {
    --morqiro-bg: #060708;
    --morqiro-amber: #FFC55E;
    --morqiro-amber-hover: #ffd68a;
    --morqiro-text: #e0e0e0;
    --morqiro-text-dim: #a0a0a0;
    --morqiro-card-bg: #111214;
    --morqiro-red: #e74c3c;
    --morqiro-transition: 0.3s ease;
}

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

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

/* Typography */
.morqiroAstraJointFlowH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
}

.morqiroAstraJointFlowH2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
    position: relative;
}

.morqiroAstraJointFlowH2::before {
    content: '✦';
    color: var(--morqiro-amber);
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.morqiroAstraJointFlowH3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--morqiro-amber);
}

.morqiroAstraJointFlowP {
    margin-bottom: 15px;
    color: var(--morqiro-text-dim);
}

.morqiroAstraJointFlowSub {
    font-size: 1.2rem;
    color: var(--morqiro-amber);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Header */
.morqiroAstraJointFlowHeader {
    background: rgba(6, 7, 8, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--morqiro-amber);
}

.morqiroAstraJointFlowHeaderFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.morqiroAstraJointFlowLogo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--morqiro-amber);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.morqiroAstraJointFlowNav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.morqiroAstraJointFlowNavLink {
    color: var(--morqiro-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--morqiro-transition);
}

.morqiroAstraJointFlowNavLink:hover {
    color: var(--morqiro-amber);
}

.morqiroAstraJointFlowNavBtn {
    background: var(--morqiro-amber);
    color: #000;
    padding: 10px 20px;
    border-radius: 4px;
}

.morqiroAstraJointFlowNavBtn:hover {
    background: #fff;
    color: #000;
}

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

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

.morqiroAstraJointFlowBurger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--morqiro-amber);
    transition: 0.3s;
}

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

.morqiroAstraJointFlowRedBorder {
    border: 3px solid var(--morqiro-red);
    margin: 20px;
    border-radius: 15px;
}

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

.morqiroAstraJointFlowHeroImage, .morqiroAstraJointFlowHeroText {
    flex: 1;
}

.morqiroAstraJointFlowImg {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 197, 94, 0.1);
}

.morqiroAstraJointFlowBtnPrimary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--morqiro-amber);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 30px;
    transition: var(--morqiro-transition);
    box-shadow: 0 5px 15px rgba(255, 197, 94, 0.3);
}

.morqiroAstraJointFlowBtnPrimary:hover {
    background: var(--morqiro-amber-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--morqiro-amber);
}

/* Reviews Slider */
.morqiroAstraJointFlowSectionReviews {
    padding: 80px 0;
    background: #0a0b0d;
}

.morqiroAstraJointFlowSliderWrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.morqiroAstraJointFlowSlides {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
}

.morqiroAstraJointFlowSlideItem {
    width: 33.333%;
    padding: 40px;
    text-align: center;
    background: var(--morqiro-card-bg);
    border: 1px solid #222;
}

.morqiroAstraJointFlowSlideInput {
    display: none;
}

#morqiroAstraJointFlowSlide1:checked ~ .morqiroAstraJointFlowSlides { transform: translateX(0); }
#morqiroAstraJointFlowSlide2:checked ~ .morqiroAstraJointFlowSlides { transform: translateX(-33.333%); }
#morqiroAstraJointFlowSlide3:checked ~ .morqiroAstraJointFlowSlides { transform: translateX(-66.666%); }

.morqiroAstraJointFlowSliderDots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.morqiroAstraJointFlowDot {
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
}

#morqiroAstraJointFlowSlide1:checked ~ .morqiroAstraJointFlowSliderDots label:nth-child(1),
#morqiroAstraJointFlowSlide2:checked ~ .morqiroAstraJointFlowSliderDots label:nth-child(2),
#morqiroAstraJointFlowSlide3:checked ~ .morqiroAstraJointFlowSliderDots label:nth-child(3) {
    background: var(--morqiro-amber);
}

.morqiroAstraJointFlowReviewText {
    font-style: italic;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.morqiroAstraJointFlowReviewAuthor {
    color: var(--morqiro-amber);
    font-weight: bold;
}

/* For Whom */
.morqiroAstraJointFlowSectionForWhom {
    padding: 80px 0;
}

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

.morqiroAstraJointFlowImgFull {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.morqiroAstraJointFlowIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.morqiroAstraJointFlowListGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.morqiroAstraJointFlowListItem {
    background: var(--morqiro-card-bg);
    padding: 30px;
    border-left: 4px solid var(--morqiro-amber);
    transition: transform 0.3s;
}

.morqiroAstraJointFlowListItem:hover {
    transform: translateY(-5px);
}

/* Benefits */
.morqiroAstraJointFlowSectionBenefits {
    padding: 80px 0;
    background: #08090a;
}

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

.morqiroAstraJointFlowBenefitsText, .morqiroAstraJointFlowBenefitsImg {
    flex: 1;
}

.morqiroAstraJointFlowUl {
    list-style: none;
}

.morqiroAstraJointFlowLi {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.morqiroAstraJointFlowLi::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--morqiro-amber);
}

/* Price Section */
.morqiroAstraJointFlowSectionPrice {
    padding: 100px 0;
}

.morqiroAstraJointFlowPriceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.morqiroAstraJointFlowPriceCard {
    background: var(--morqiro-card-bg);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.morqiroAstraJointFlowPriceCardFeatured {
    border: 2px solid var(--morqiro-amber);
    transform: scale(1.05);
    background: #16171a;
}

.morqiroAstraJointFlowPriceTitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.morqiroAstraJointFlowPriceValue {
    font-size: 2.5rem;
    color: var(--morqiro-amber);
    font-weight: bold;
    margin-bottom: 25px;
}

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

.morqiroAstraJointFlowPriceList li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

.morqiroAstraJointFlowBtnPrice {
    display: block;
    padding: 15px;
    border: 1px solid var(--morqiro-amber);
    color: var(--morqiro-amber);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.morqiroAstraJointFlowBtnPrice:hover {
    background: var(--morqiro-amber);
    color: #000;
}

.morqiroAstraJointFlowQuickLinks {
    text-align: center;
    color: var(--morqiro-text-dim);
}

.morqiroAstraJointFlowQuickLinks a {
    color: var(--morqiro-amber);
    text-decoration: none;
    margin: 0 10px;
}

/* Expert Section */
.morqiroAstraJointFlowSectionExpert {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://placehold.co/1920x600/060708/333?text=Calm+Horizon');
    background-size: cover;
}

.morqiroAstraJointFlowQuote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #fff;
}

.morqiroAstraJointFlowCite {
    display: block;
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--morqiro-amber);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.morqiroAstraJointFlowDetails {
    background: var(--morqiro-card-bg);
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #222;
}

.morqiroAstraJointFlowSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--morqiro-amber);
    list-style: none;
    position: relative;
}

.morqiroAstraJointFlowSummary::after {
    content: '+';
    position: absolute;
    right: 20px;
}

.morqiroAstraJointFlowDetails[open] .morqiroAstraJointFlowSummary::after {
    content: '-';
}

.morqiroAstraJointFlowFaqContent {
    padding: 0 20px 20px;
    color: var(--morqiro-text-dim);
}

/* Info Sections */
.morqiroAstraJointFlowSectionInfo {
    padding: 100px 0;
}

.morqiroAstraJointFlowAltBg {
    background: #0a0b0d;
}

/* Form Section */
.morqiroAstraJointFlowSectionForm {
    padding: 100px 0;
    background: var(--morqiro-card-bg);
}

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

.morqiroAstraJointFlowInputGroup {
    margin-bottom: 20px;
}

.morqiroAstraJointFlowLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.morqiroAstraJointFlowInput, .morqiroAstraJointFlowTextarea {
    width: 100%;
    padding: 15px;
    background: #1a1b1e;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
}

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

.morqiroAstraJointFlowCheckboxGroup {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.morqiroAstraJointFlowCheckLabel a {
    color: var(--morqiro-amber);
}

.morqiroAstraJointFlowBtnSubmit {
    width: 100%;
    padding: 20px;
    background: var(--morqiro-amber);
    color: #000;
    border: none;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.morqiroAstraJointFlowBtnSubmit:hover {
    background: var(--morqiro-amber-hover);
    box-shadow: 0 0 20px rgba(255, 197, 94, 0.4);
}

/* Footer */
.morqiroAstraJointFlowFooter {
    padding: 60px 0 30px;
    border-top: 1px solid #222;
}

.morqiroAstraJointFlowFooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.morqiroAstraJointFlowFooterLogo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--morqiro-amber);
}

.morqiroAstraJointFlowFooterBottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #111;
}

.morqiroAstraJointFlowCopy {
    margin-bottom: 20px;
    color: var(--morqiro-text-dim);
}

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

.morqiroAstraJointFlowFooterNav a {
    color: var(--morqiro-text-dim);
    font-size: 0.9rem;
    text-decoration: none;
}

.morqiroAstraJointFlowFooterNav a:hover {
    color: var(--morqiro-amber);
}

/* Responsive */
@media (max-width: 992px) {
    .morqiroAstraJointFlowHeroGrid, .morqiroAstraJointFlowBenefitsGrid {
        flex-direction: column;
    }
    .morqiroAstraJointFlowH1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .morqiroAstraJointFlowBurger { display: flex; }
    .morqiroAstraJointFlowNav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--morqiro-bg);
        flex-direction: column;
        padding: 30px;
        border-bottom: 2px solid var(--morqiro-amber);
    }
    .morqiroAstraJointFlowMenuToggle:checked ~ .morqiroAstraJointFlowNav {
        display: flex;
    }
    .morqiroAstraJointFlowFooterTop {
        flex-direction: column;
        text-align: center;
    }
}