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

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

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

/* HEADER */
.narviroxVelourMotionGridHeader {
    background-color: #0d0f11;
    border-bottom: 2px solid #FFC55E;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.narviroxVelourMotionGridHeaderInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.narviroxVelourMotionGridLogo {
    font-size: 28px;
    font-weight: 800;
    color: #FFC55E;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.narviroxVelourMotionGridNav {
    display: block;
}

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

.narviroxVelourMotionGridNavLink {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.narviroxVelourMotionGridNavLink:hover {
    color: #FFC55E;
}

/* MOBILE MENU */
.narviroxVelourMotionGridMenuCheckbox,
.narviroxVelourMotionGridBurger {
    display: none;
}

@media (max-width: 991px) {
    .narviroxVelourMotionGridBurger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }
    .narviroxVelourMotionGridBurger span {
        width: 30px;
        height: 3px;
        background-color: #FFC55E;
        transition: 0.3s;
    }
    .narviroxVelourMotionGridNav {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 82px);
        background-color: #0d0f11;
        transition: 0.4s;
    }
    .narviroxVelourMotionGridNavList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .narviroxVelourMotionGridMenuCheckbox:checked ~ .narviroxVelourMotionGridNav {
        left: 0;
    }
}

/* HERO SECTION */
.narviroxVelourMotionGridHeroSection {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #1a1a1a, #060708);
}

.narviroxVelourMotionGridHeroWrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    border: 3px solid #ff0000; /* Червоне обведення за промтом */
    padding: 40px;
    border-radius: 4px;
}

.narviroxVelourMotionGridHeroImageWrap {
    flex: 1;
}

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

.narviroxVelourMotionGridHeroContent {
    flex: 1.2;
}

.narviroxVelourMotionGridHeroTitle {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.narviroxVelourMotionGridHeroSub {
    font-size: 20px;
    color: #FFC55E;
    margin-bottom: 25px;
    font-weight: 600;
}

.narviroxVelourMotionGridHeroText {
    margin-bottom: 15px;
    color: #ccc;
}

.narviroxVelourMotionGridBtnMain {
    display: inline-block;
    padding: 18px 40px;
    background-color: #FFC55E;
    color: #060708;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.narviroxVelourMotionGridBtnMain:hover {
    background-color: #ffd68c;
    box-shadow: 0 0 20px rgba(255, 197, 94, 0.4);
}

/* SECTION TITLES */
.narviroxVelourMotionGridSectionTitle {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.narviroxVelourMotionGridSectionTitle::before {
    content: '✦';
    color: #FFC55E;
    margin-right: 10px;
    font-size: 24px;
}

.narviroxVelourMotionGridSectionSubtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #aaa;
}

/* REVIEWS */
.narviroxVelourMotionGridReviewsSection {
    padding: 80px 0;
    background-color: #0a0b0d;
}

.narviroxVelourMotionGridReviewsGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.narviroxVelourMotionGridReviewCard {
    flex: 1 1 300px;
    background: #111315;
    padding: 30px;
    border-left: 4px solid #FFC55E;
    border-radius: 4px;
}

.narviroxVelourMotionGridReviewText {
    font-style: italic;
    margin-bottom: 20px;
}

.narviroxVelourMotionGridReviewAuthor {
    color: #FFC55E;
    font-weight: 700;
}

/* PRICE SECTION */
.narviroxVelourMotionGridPriceSection {
    padding: 100px 0;
}

.narviroxVelourMotionGridPriceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.narviroxVelourMotionGridPriceCard {
    flex: 1 1 260px;
    background: #0d0f11;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.narviroxVelourMotionGridPriceCard:hover {
    transform: translateY(-10px);
    border-color: #FFC55E;
}

.narviroxVelourMotionGridPriceFeatured {
    border: 2px solid #FFC55E;
    background: #121417;
}

.narviroxVelourMotionGridPriceName {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.narviroxVelourMotionGridPriceTag {
    margin-bottom: 25px;
}

.narviroxVelourMotionGridOldPrice {
    text-decoration: line-through;
    color: #777;
    margin-right: 10px;
}

.narviroxVelourMotionGridNewPrice {
    font-size: 24px;
    color: #FFC55E;
    font-weight: 800;
}

.narviroxVelourMotionGridPriceList {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.narviroxVelourMotionGridPriceList li {
    padding: 8px 0;
    border-bottom: 1px solid #222;
    font-size: 14px;
}

.narviroxVelourMotionGridBtnPrice {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border: 1px solid #FFC55E;
    color: #FFC55E;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.narviroxVelourMotionGridBtnPrice:hover {
    background-color: #FFC55E;
    color: #000;
}

/* BENEFITS SECTION */
.narviroxVelourMotionGridBenefitsSection {
    padding: 100px 0;
    background-color: #060708;
}

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

.narviroxVelourMotionGridBenefitsContent {
    flex: 1;
}

.narviroxVelourMotionGridBenefitsList {
    list-style: none;
    margin-top: 30px;
}

.narviroxVelourMotionGridBenefitsList li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
}

.narviroxVelourMotionGridBenefitsList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFC55E;
    font-weight: bold;
}

.narviroxVelourMotionGridBenefitsImage {
    flex: 1;
}

.narviroxVelourMotionGridCommonImg {
    width: 100%;
    height: auto;
    border-radius: 50% 5% 50% 5%;
    border: 2px solid #FFC55E;
}

/* AUDIENCE SECTION */
.narviroxVelourMotionGridAudienceSection {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d0f11 0%, #060708 100%);
}

.narviroxVelourMotionGridAudienceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.narviroxVelourMotionGridAudienceItem {
    background: #111;
    padding: 25px;
    border-radius: 4px;
    border-bottom: 2px solid #333;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.narviroxVelourMotionGridAudienceItem::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFC55E;
    transition: 0.3s;
}

.narviroxVelourMotionGridAudienceItem:hover::after {
    width: 100%;
}

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

.narviroxVelourMotionGridExpertBox {
    background: #111315;
    padding: 60px;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.narviroxVelourMotionGridExpertQuote {
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    font-style: italic;
}

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

.narviroxVelourMotionGridExpertName {
    font-size: 22px;
    color: #FFC55E;
    font-weight: 700;
}

.narviroxVelourMotionGridExpertDesc {
    color: #777;
}

.narviroxVelourMotionGridExpertToggle {
    background: #08090a;
    border-radius: 8px;
    padding: 15px;
}

.narviroxVelourMotionGridExpertSummary {
    cursor: pointer;
    font-weight: 600;
    color: #FFC55E;
    outline: none;
}

.narviroxVelourMotionGridExpertPrinciples {
    margin-top: 20px;
    list-style: none;
    padding-left: 20px;
}

.narviroxVelourMotionGridExpertPrinciples li {
    margin-bottom: 10px;
}

/* FAQ */
.narviroxVelourMotionGridFaqSection {
    padding: 100px 0;
    background-color: #0a0b0d;
}

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

.narviroxVelourMotionGridFaqItem {
    background: #111315;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #222;
}

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

.narviroxVelourMotionGridFaqSummary::after {
    content: '+';
    color: #FFC55E;
    font-size: 24px;
}

.narviroxVelourMotionGridFaqItem[open] .narviroxVelourMotionGridFaqSummary::after {
    content: '−';
}

.narviroxVelourMotionGridFaqContent {
    padding: 0 20px 20px;
    color: #aaa;
}

/* FORM SECTION */
.narviroxVelourMotionGridFormSection {
    padding: 100px 0;
}

.narviroxVelourMotionGridFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #0d0f11;
    padding: 50px;
    border-radius: 10px;
    border: 1px solid #333;
}

.narviroxVelourMotionGridFormRow {
    margin-bottom: 20px;
}

.narviroxVelourMotionGridLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #FFC55E;
}

.narviroxVelourMotionGridInput,
.narviroxVelourMotionGridTextarea {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
}

.narviroxVelourMotionGridTextarea {
    height: 120px;
    resize: none;
}

.narviroxVelourMotionGridFormRowCheckbox {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.narviroxVelourMotionGridFormRowCheckbox a {
    color: #FFC55E;
}

/* EXTRA TEXT SECTIONS */
.narviroxVelourMotionGridExtraSection {
    padding: 80px 0;
}

.narviroxVelourMotionGridExtraSection.alternate {
    background-color: #0d0f11;
}

.narviroxVelourMotionGridText {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 17px;
    color: #bbb;
}

/* FOOTER */
.narviroxVelourMotionGridFooter {
    background-color: #0d0f11;
    padding: 60px 0 30px;
    border-top: 1px solid #222;
    text-align: center;
}

.narviroxVelourMotionGridFooterTop {
    margin-bottom: 40px;
}

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

.narviroxVelourMotionGridFooterLinks a {
    color: #777;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

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

.narviroxVelourMotionGridFooterBottom {
    font-size: 14px;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .narviroxVelourMotionGridHeroWrapper,
    .narviroxVelourMotionGridBenefitsWrapper {
        flex-direction: column;
        padding: 20px;
    }
    .narviroxVelourMotionGridHeroTitle {
        font-size: 32px;
    }
    .narviroxVelourMotionGridSectionTitle {
        font-size: 28px;
    }
    .narviroxVelourMotionGridFormWrapper {
        padding: 30px;
    }
}