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

html {
    scroll-behavior: smooth;
}

body.varviroxMotionPulseFieldMainBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #060708; /* Carbon Deep Black */
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
.varviroxMotionPulseFieldH1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #FFC55E; /* Amber */
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.varviroxMotionPulseFieldH2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #FFC55E;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.varviroxMotionPulseFieldH2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FFC55E;
    margin-top: 10px;
}

.varviroxMotionPulseFieldTextCenter {
    text-align: center;
    display: block;
}

.varviroxMotionPulseFieldTextCenter::after {
    margin: 10px auto;
}

/* Header & Nav */
.varviroxMotionPulseFieldHeader {
    background: #0d0f11;
    border-bottom: 2px solid #FFC55E;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.varviroxMotionPulseFieldLogo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFC55E;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.varviroxMotionPulseFieldNavList {
    display: flex;
    list-style: none;
    gap: 20px;
}

.varviroxMotionPulseFieldNavLink {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.varviroxMotionPulseFieldNavLink:hover {
    color: #FFC55E;
}

/* Burger Menu (No JS) */
.varviroxMotionPulseFieldMenuCheckbox {
    display: none;
}

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

.varviroxMotionPulseFieldBurger span {
    width: 25px;
    height: 3px;
    background: #FFC55E;
    transition: 0.3s;
}

/* Hero Section */
.varviroxMotionPulseFieldHeroSection {
    padding: 40px 0 80px;
}

.varviroxMotionPulseFieldQuickLinks {
    padding: 20px 0 40px;
}

.varviroxMotionPulseFieldQuickLinksGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.varviroxMotionPulseFieldQuickBtn {
    background: transparent;
    border: 1px solid #FFC55E;
    color: #FFC55E;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.varviroxMotionPulseFieldQuickBtn:hover {
    background: #FFC55E;
    color: #060708;
}

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

.varviroxMotionPulseFieldHeroImageWrap {
    flex: 1;
}

.varviroxMotionPulseFieldHeroImg {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
}

.varviroxMotionPulseFieldHeroContent {
    flex: 1.2;
}

.varviroxMotionPulseFieldSubTitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 20px;
    font-style: italic;
}

.varviroxMotionPulseFieldHeroText {
    margin-bottom: 20px;
    color: #bbb;
}

.varviroxMotionPulseFieldMainBtn {
    display: inline-block;
    background-color: #FFC55E;
    color: #060708;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.varviroxMotionPulseFieldMainBtn:hover {
    background-color: #ffd285;
    box-shadow: 0 0 15px rgba(255, 197, 94, 0.4);
    transform: translateY(-2px);
}

/* Reviews Slider (CSS Only) */
.varviroxMotionPulseFieldReviewsSection {
    background-color: #0b0d0f;
    padding: 80px 0;
}

.varviroxMotionPulseFieldReviewSlider {
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #FFC55E #060708;
}

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

.varviroxMotionPulseFieldReviewCard {
    min-width: 300px;
    background: #15181b;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #FFC55E;
}

.varviroxMotionPulseFieldReviewQuote {
    font-style: italic;
    margin-bottom: 15px;
}

.varviroxMotionPulseFieldReviewAuthor {
    color: #FFC55E;
    font-weight: bold;
}

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

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

.varviroxMotionPulseFieldAudienceContent {
    flex: 1;
}

.varviroxMotionPulseFieldAudienceList {
    list-style: none;
    margin-top: 25px;
}

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

.varviroxMotionPulseFieldAudienceItem::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFC55E;
}

.varviroxMotionPulseFieldAudienceVisual {
    flex: 0.8;
    position: relative;
}

.varviroxMotionPulseFieldAudienceImg {
    width: 100%;
    border-radius: 12px;
}

.varviroxMotionPulseFieldPriceTag {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #FFC55E;
    color: #060708;
    padding: 15px 25px;
    font-weight: 900;
    border-radius: 4px;
    box-shadow: 5px 5px 0px rgba(255,197,94,0.3);
}

/* Benefits */
.varviroxMotionPulseFieldBenefitsSection {
    background-color: #0d0f11;
    padding: 80px 0;
}

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

.varviroxMotionPulseFieldBenefitsImage {
    flex: 1;
}

.varviroxMotionPulseFieldBenefitsImg {
    width: 100%;
    border-radius: 12px;
}

.varviroxMotionPulseFieldBenefitsText {
    flex: 1;
}

.varviroxMotionPulseFieldCheckList {
    list-style: none;
}

.varviroxMotionPulseFieldCheckItem {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
}

.varviroxMotionPulseFieldCheckItem::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #FFC55E;
    font-size: 1.2rem;
}

/* Pricing */
.varviroxMotionPulseFieldPriceSection {
    padding: 80px 0;
}

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

.varviroxMotionPulseFieldPriceCard {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: #060708;
    border: 1px solid #333;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.varviroxMotionPulseFieldPriceCardFeatured {
    border-color: #FFC55E;
    transform: scale(1.05);
    background: #0d0f11;
}

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

.varviroxMotionPulseFieldPriceValue {
    font-size: 2rem;
    color: #FFC55E;
    font-weight: 800;
    margin-bottom: 25px;
}

.varviroxMotionPulseFieldPriceFeatures {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.varviroxMotionPulseFieldPriceFeatures li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    color: #ccc;
    font-size: 0.9rem;
}

.varviroxMotionPulseFieldPriceBtn {
    display: block;
    border: 1px solid #FFC55E;
    color: #FFC55E;
    padding: 12px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.varviroxMotionPulseFieldPriceBtn:hover {
    background: #FFC55E;
    color: #060708;
}

/* Expert Word */
.varviroxMotionPulseFieldExpertSection {
    background: linear-gradient(rgba(6, 7, 8, 0.9), rgba(6, 7, 8, 0.9)), url('https://placehold.co/1200x400/060708/333?text=Pattern');
    padding: 100px 0;
    text-align: center;
}

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

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

.varviroxMotionPulseFieldExpertName {
    display: block;
    font-size: 1.2rem;
    color: #FFC55E;
    font-weight: bold;
}

.varviroxMotionPulseFieldExpertRole {
    color: #888;
    font-size: 0.9rem;
}

/* FAQ */
.varviroxMotionPulseFieldFaqSection {
    padding: 80px 0;
    background: #0b0d0f;
}

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

.varviroxMotionPulseFieldFaqItem {
    background: #15181b;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.varviroxMotionPulseFieldFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #FFC55E;
    list-style: none;
    outline: none;
}

.varviroxMotionPulseFieldFaqAnswer {
    padding: 0 20px 20px;
    color: #bbb;
}

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

.varviroxMotionPulseFieldFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #111417;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid #222;
}

.varviroxMotionPulseFieldInputGroup {
    margin-bottom: 20px;
}

.varviroxMotionPulseFieldInputGroup label {
    display: block;
    margin-bottom: 8px;
    color: #FFC55E;
    font-size: 0.9rem;
}

.varviroxMotionPulseFieldInputGroup input,
.varviroxMotionPulseFieldInputGroup textarea {
    width: 100%;
    padding: 12px;
    background: #060708;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
}

.varviroxMotionPulseFieldCheckboxGroup {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.varviroxMotionPulseFieldCheckboxGroup a {
    color: #FFC55E;
}

.varviroxMotionPulseFieldSubmitBtn {
    width: 100%;
    background: #FFC55E;
    color: #060708;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.varviroxMotionPulseFieldSubmitBtn:hover {
    background: #ffd285;
}

/* Extra Sections */
.varviroxMotionPulseFieldExtraSection {
    padding: 80px 0;
}

.varviroxMotionPulseFieldAltBg {
    background-color: #0d0f11;
}

.varviroxMotionPulseFieldTextContent p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ccc;
}

.varviroxMotionPulseFieldSimpleList {
    list-style: none;
    margin: 20px 0;
}

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

/* Footer */
.varviroxMotionPulseFieldFooter {
    background: #060708;
    border-top: 1px solid #222;
    padding: 60px 0 30px;
    text-align: center;
    color: #666;
}

.varviroxMotionPulseFieldFooterTop {
    margin-bottom: 40px;
}

.varviroxMotionPulseFieldFooterTop a {
    color: #FFC55E;
    text-decoration: none;
}

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

.varviroxMotionPulseFieldFooterLinks a {
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
}

.varviroxMotionPulseFieldFooterLinks a:hover {
    color: #FFC55E;
}

/* Responsive */
@media (max-width: 992px) {
    .varviroxMotionPulseFieldHeroLayout,
    .varviroxMotionPulseFieldAudienceGrid,
    .varviroxMotionPulseFieldBenefitsGrid {
        flex-direction: column;
        text-align: center;
    }
    
    .varviroxMotionPulseFieldAudienceVisual {
        order: -1;
    }

    .varviroxMotionPulseFieldH2::after {
        margin: 10px auto;
    }
}

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

    .varviroxMotionPulseFieldNav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0d0f11;
        transition: 0.4s;
        z-index: 999;
    }

    .varviroxMotionPulseFieldNavList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }

    .varviroxMotionPulseFieldMenuCheckbox:checked ~ .varviroxMotionPulseFieldNav {
        left: 0;
    }

    .varviroxMotionPulseFieldMenuCheckbox:checked ~ .varviroxMotionPulseFieldBurger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .varviroxMotionPulseFieldMenuCheckbox:checked ~ .varviroxMotionPulseFieldBurger span:nth-child(2) {
        opacity: 0;
    }

    .varviroxMotionPulseFieldMenuCheckbox:checked ~ .varviroxMotionPulseFieldBurger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .varviroxMotionPulseFieldFormWrapper {
        padding: 30px 20px;
    }
}

/* Unique decorations */
.varviroxMotionPulseFieldH2::before {
    content: '✦';
    color: #FFC55E;
    position: absolute;
    left: -25px;
    font-size: 0.8rem;
    top: 5px;
}