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

html {
    scroll-behavior: smooth;
}

body.WindsweptMainBody {
    font-family: 'Lato', sans-serif;
    background-color: #02110C;
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.WindsweptTopHeader {
    position: sticky;
    top: 0;
    background: rgba(2, 17, 12, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 156, 0.2);
}

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

.WindsweptLogoText {
    font-size: 2rem;
    font-weight: 800;
    color: #00FF9C;
    text-shadow: 0 0 10px rgba(0, 255, 156, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.WindsweptNavLink {
    color: #f8fafc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.WindsweptNavLink:hover {
    color: #00FF9C;
    text-shadow: 0 0 8px rgba(0, 255, 156, 0.8);
}

.WindsweptDisclaimerHeader {
    background: rgba(0, 255, 156, 0.05);
    padding: 8px 0;
    font-size: 0.75rem;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 156, 0.1);
    color: #c4b5fd;
}

/* Burger Menu */
.WindsweptNavCheckbox {
    display: none;
}

.WindsweptBurgerBtn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.WindsweptBurgerBtn span {
    display: block;
    width: 30px;
    height: 3px;
    background: #00FF9C;
    transition: 0.3s;
}

/* Hero Section */
.WindsweptHeroSection {
    padding: 100px 0;
    position: relative;
}

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

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

.WindsweptImageBlurBack {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, #00FF9C 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(60px);
    opacity: 0.3;
    z-index: 1;
}

.WindsweptHeroImg {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 255, 156, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 156, 0.1);
}

.WindsweptHeroContent {
    flex: 1;
}

.WindsweptMainTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #f8fafc;
}

.WindsweptHeroSubtext {
    font-size: 1.25rem;
    color: #00FF9C;
    margin-bottom: 20px;
    font-weight: 600;
}

.WindsweptHeroDescription {
    margin-bottom: 15px;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.WindsweptCtaButton {
    display: inline-block;
    padding: 18px 40px;
    background: #00FF9C;
    color: #02110C;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    margin-top: 30px;
    box-shadow: 0 0 15px rgba(0, 255, 156, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.WindsweptCtaButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 156, 0.6);
    animation: WindsweptPulse 1.5s infinite;
}

@keyframes WindsweptPulse {
    0% { box-shadow: 0 0 15px rgba(0, 255, 156, 0.4); }
    50% { box-shadow: 0 0 35px rgba(0, 255, 156, 0.8); }
    100% { box-shadow: 0 0 15px rgba(0, 255, 156, 0.4); }
}

/* Sections General */
.WindsweptSectionTitle {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #f8fafc;
    position: relative;
}

.WindsweptSectionTitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #00FF9C;
    margin: 15px auto 0;
    box-shadow: 0 0 10px #00FF9C;
}

.WindsweptExtraInfoSection {
    padding: 80px 0;
    border-top: 1px solid rgba(0, 255, 156, 0.1);
}

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

.WindsweptHighlightedText {
    font-size: 1.4rem;
    color: #00FF9C;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.WindsweptInfoBullets, .WindsweptCheckList, .WindsweptStyledList {
    list-style: none;
    margin: 30px 0;
}

.WindsweptInfoBullets li, .WindsweptCheckList li, .WindsweptStyledList li {
    padding-left: 35px;
    margin-bottom: 15px;
    position: relative;
}

.WindsweptInfoBullets li::before, .WindsweptCheckList li::before, .WindsweptStyledList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00FF9C;
    font-weight: bold;
    text-shadow: 0 0 5px #00FF9C;
}

.WindsweptAccentBox {
    background: rgba(0, 255, 156, 0.1);
    padding: 30px;
    border-left: 5px solid #00FF9C;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.2rem;
}

/* FAQ Section */
.WindsweptFaqSection {
    padding: 100px 0;
    background: #010a07;
}

.WindsweptFaqIntro {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 50px;
    color: #94a3b8;
}

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

.WindsweptFaqItem {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 156, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

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

.WindsweptFaqSummary::after {
    content: '+';
    color: #00FF9C;
    font-size: 1.5rem;
}

details[open] .WindsweptFaqSummary::after {
    content: '-';
}

.WindsweptFaqAnswer {
    padding: 0 20px 20px;
    color: #cbd5e1;
}

/* Prices Section */
.WindsweptPriceGrid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.WindsweptPriceCard {
    flex: 1;
    background: #02110C;
    border: 1px solid rgba(0, 255, 156, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    max-width: 380px;
}

.WindsweptPriceCard:hover {
    transform: translateY(-10px);
    border-color: #00FF9C;
    box-shadow: 0 10px 30px rgba(0, 255, 156, 0.1);
}

.WindsweptFeaturedCard {
    border-color: #00FF9C;
    background: rgba(0, 255, 156, 0.02);
    box-shadow: 0 0 20px rgba(0, 255, 156, 0.15);
}

.WindsweptBadge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00FF9C;
    color: #02110C;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}

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

.WindsweptPriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00FF9C;
    margin-bottom: 25px;
}

.WindsweptCardList {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    min-height: 180px;
}

.WindsweptCardList li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #cbd5e1;
    position: relative;
    padding-left: 25px;
}

.WindsweptCardList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00FF9C;
}

.WindsweptCardBtn {
    display: block;
    padding: 15px;
    border: 1px solid #00FF9C;
    color: #00FF9C;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s;
}

.WindsweptCardBtn:hover {
    background: #00FF9C;
    color: #02110C;
}

/* Expert Section */
.WindsweptExpertSection {
    padding: 80px 0;
    background: linear-gradient(90deg, #02110C 0%, #052a1e 50%, #02110C 100%);
}

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

.WindsweptQuoteText {
    font-size: 1.8rem;
    font-style: italic;
    color: #f8fafc;
    margin-bottom: 30px;
    line-height: 1.4;
}

.WindsweptExpertName {
    font-size: 1.2rem;
    color: #00FF9C;
    font-weight: bold;
    display: block;
}

/* Benefits Section */
.WindsweptBenefitsSection {
    padding: 100px 0;
}

.WindsweptBenefitsFlex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.WindsweptBenefitsText {
    flex: 1.2;
}

.WindsweptBenefitsImage {
    flex: 0.8;
}

.WindsweptRoundImage {
    width: 100%;
    border-radius: 50% 50% 20% 50%;
    border: 2px solid #00FF9C;
    box-shadow: 0 0 30px rgba(0, 255, 156, 0.3);
}

.WindsweptBenefitCardsWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.WindsweptMiniCard {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 156, 0.1);
}

.WindsweptMiniCard h4 {
    color: #00FF9C;
    margin-bottom: 10px;
}

/* Audience Section */
.WindsweptAudienceSection {
    padding: 100px 0;
    background: rgba(0, 255, 156, 0.02);
}

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

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

.WindsweptAudienceCol {
    flex: 1;
}

/* Form Section */
.WindsweptFormSection {
    padding: 100px 0;
}

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

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

.WindsweptFormGroup {
    margin-bottom: 25px;
}

.WindsweptFormLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.WindsweptFormInput, .WindsweptFormTextarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.WindsweptFormInput:focus, .WindsweptFormTextarea:focus {
    border-color: #00FF9C;
    box-shadow: 0 0 10px rgba(0, 255, 156, 0.2);
}

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

.WindsweptFormCheckbox {
    margin-top: 5px;
    accent-color: #00FF9C;
}

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

.WindsweptCheckboxLabel a {
    color: #00FF9C;
    text-decoration: none;
}

.WindsweptSubmitBtn {
    width: 100%;
    padding: 20px;
    background: #00FF9C;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    color: #02110C;
    box-shadow: 0 0 15px rgba(0, 255, 156, 0.3);
    transition: 0.3s;
}

.WindsweptSubmitBtn:hover {
    box-shadow: 0 0 30px rgba(0, 255, 156, 0.5);
    transform: scale(1.02);
}

/* Footer */
.WindsweptMainFooter {
    padding: 80px 0 40px;
    background: #010806;
    border-top: 1px solid rgba(0, 255, 156, 0.2);
    text-align: center;
}

.WindsweptFooterTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    text-align: left;
}

.WindsweptFooterBrand {
    font-size: 1.8rem;
    color: #00FF9C;
    font-weight: 800;
}

.WindsweptFooterContact p {
    margin-bottom: 5px;
    color: #cbd5e1;
}

.WindsweptFooterContact a {
    color: #00FF9C;
    text-decoration: none;
}

.WindsweptFooterMiddle {
    margin-bottom: 30px;
    font-weight: bold;
}

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

.WindsweptFootLink {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.WindsweptFootLink:hover {
    color: #00FF9C;
}

.WindsweptDisclaimerBottom {
    font-size: 0.8rem;
    color: #475569;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .WindsweptHeroFlex, .WindsweptBenefitsFlex {
        flex-direction: column;
        text-align: center;
    }
    .WindsweptPriceGrid {
        flex-wrap: wrap;
    }
    .WindsweptHeroImg {
        max-width: 100%;
    }
    .WindsweptMainTitle {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .WindsweptHeaderInner {
        padding: 15px;
    }
    .WindsweptBurgerBtn {
        display: flex;
        z-index: 1001;
    }
    .WindsweptMainNavigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #02110C;
        padding-top: 100px;
        transition: 0.4s ease-in-out;
        z-index: 1000;
    }
    .WindsweptNavList {
        flex-direction: column;
        align-items: center;
    }
    .WindsweptNavCheckbox:checked ~ .WindsweptMainNavigation {
        right: 0;
    }
    .WindsweptNavCheckbox:checked ~ .WindsweptBurgerBtn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .WindsweptNavCheckbox:checked ~ .WindsweptBurgerBtn span:nth-child(2) {
        opacity: 0;
    }
    .WindsweptNavCheckbox:checked ~ .WindsweptBurgerBtn span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    .WindsweptFooterTop {
        flex-direction: column;
        gap: 30px;
    }
    .WindsweptAudienceColumns {
        flex-direction: column;
        gap: 0;
    }
    .WindsweptBenefitCardsWrap {
        grid-template-columns: 1fr;
    }
    .WindsweptFormWrapper {
        padding: 30px;
    }
}

/* Decorations: Neon paths (CSS only) */
.WindsweptMainBody::before {
    content: '';
    position: fixed;
    top: 0;
    left: 10%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 156, 0.1), transparent);
    z-index: -1;
}

.WindsweptMainBody::after {
    content: '';
    position: fixed;
    top: 0;
    right: 10%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 156, 0.1), transparent);
    z-index: -1;
}