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

body.veloravelCardioBreathGridBody {
    background-color: #120014;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* HEADER */
.veloravelCardioBreathGridHeader {
    background: linear-gradient(180deg, #1f0024 0%, #120014 100%);
    box-shadow: 0 4px 20px rgba(255, 79, 216, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 79, 216, 0.2);
}

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

.veloravelCardioBreathGridLogo {
    font-size: 28px;
    font-weight: 800;
    color: #FF4FD8;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 79, 216, 0.5);
}

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

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

.veloravelCardioBreathGridNavLink:hover {
    color: #FF4FD8;
}

.veloravelCardioBreathGridMenuToggle {
    display: none;
}

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

.veloravelCardioBreathGridMenuBtn span {
    width: 30px;
    height: 3px;
    background: #FF4FD8;
    display: block;
}

/* HERO SECTION */
.veloravelCardioBreathGridHeroSec {
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.veloravelCardioBreathGridQuickLinks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.veloravelCardioBreathGridQuickBtn {
    padding: 10px 20px;
    border: 1px solid #FF4FD8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 79, 216, 0.05);
}

.veloravelCardioBreathGridQuickBtn:hover {
    background: #FF4FD8;
    color: #120014;
    box-shadow: 0 0 15px #FF4FD8;
}

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

.veloravelCardioBreathGridHeroImgCol, .veloravelCardioBreathGridHeroTxtCol {
    flex: 1;
}

.veloravelCardioBreathGridMainImg {
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 79, 216, 0.2);
    border: 1px solid rgba(255, 79, 216, 0.3);
}

.veloravelCardioBreathGridH1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.veloravelCardioBreathGridP {
    margin-bottom: 20px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
}

.veloravelCardioBreathGridCtaBtn {
    display: inline-block;
    padding: 18px 40px;
    background-color: #FF4FD8;
    color: #120014;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.4s ease;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px #FF4FD8; }
    50% { box-shadow: 0 0 25px #FF4FD8; }
    100% { box-shadow: 0 0 5px #FF4FD8; }
}

.veloravelCardioBreathGridCtaBtn:hover {
    transform: translateY(-3px);
    background-color: #ffffff;
}

/* REVIEWS SLIDER */
.veloravelCardioBreathGridReviewsSec {
    padding: 100px 0;
    background: rgba(255, 79, 216, 0.03);
}

.veloravelCardioBreathGridH2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.veloravelCardioBreathGridSliderWrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.veloravelCardioBreathGridSlideInp {
    display: none;
}

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

.veloravelCardioBreathGridSlideItem {
    width: 33.333%;
    padding: 20px;
}

.veloravelCardioBreathGridReviewCard {
    background: #1e0021;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 79, 216, 0.2);
}

.veloravelCardioBreathGridQuote {
    font-style: italic;
    font-size: 20px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.veloravelCardioBreathGridAuthor {
    display: block;
    color: #FF4FD8;
    font-weight: bold;
}

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

.veloravelCardioBreathGridDot {
    width: 15px;
    height: 15px;
    background: rgba(255, 79, 216, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

#rev1:checked ~ .veloravelCardioBreathGridSlides { transform: translateX(0); }
#rev2:checked ~ .veloravelCardioBreathGridSlides { transform: translateX(-33.333%); }
#rev3:checked ~ .veloravelCardioBreathGridSlides { transform: translateX(-66.666%); }

#rev1:checked ~ .veloravelCardioBreathGridSliderDots label[for="rev1"],
#rev2:checked ~ .veloravelCardioBreathGridSliderDots label[for="rev2"],
#rev3:checked ~ .veloravelCardioBreathGridSliderDots label[for="rev3"] {
    background: #FF4FD8;
}

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

.veloravelCardioBreathGridPriceGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.veloravelCardioBreathGridPriceCard {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: transparent;
    border: 2px solid rgba(255, 79, 216, 0.4);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.veloravelCardioBreathGridPriceCard:hover {
    transform: scale(1.05);
    border-color: #FF4FD8;
}

.veloravelCardioBreathGridPriceFeatured {
    border-color: #FF4FD8;
    background: rgba(255, 79, 216, 0.05);
    position: relative;
}

.veloravelCardioBreathGridPriceFeatured::before {
    content: "Популярний";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF4FD8;
    color: #120014;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.veloravelCardioBreathGridH3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.veloravelCardioBreathGridPriceVal {
    font-size: 32px;
    font-weight: 800;
    color: #FF4FD8;
    margin-bottom: 25px;
}

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

.veloravelCardioBreathGridPriceList li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.veloravelCardioBreathGridPriceList li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #FF4FD8;
}

.veloravelCardioBreathGridPriceBtn {
    display: block;
    padding: 12px;
    border: 1px solid #FF4FD8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.veloravelCardioBreathGridPriceBtn:hover {
    background: #FF4FD8;
    color: #120014;
}

/* TARGET SECTION */
.veloravelCardioBreathGridTargetSec {
    padding: 100px 0;
}

.veloravelCardioBreathGridTargetImgWrap {
    margin-bottom: 50px;
}

.veloravelCardioBreathGridWideImg {
    border-radius: 15px;
    filter: brightness(0.7);
}

.veloravelCardioBreathGridIntro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.veloravelCardioBreathGridTargetItem {
    background: rgba(255, 79, 216, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FF4FD8;
}

/* QUOTE SECTION */
.veloravelCardioBreathGridQuoteSec {
    padding: 80px 0;
    background: linear-gradient(90deg, #120014 0%, #25002b 50%, #120014 100%);
}

.veloravelCardioBreathGridQuoteBox {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border: 1px dashed rgba(255, 79, 216, 0.5);
    padding: 50px;
}

.veloravelCardioBreathGridMainQuote {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.veloravelCardioBreathGridQuoteSign {
    color: #FF4FD8;
}

/* BENEFITS SECTION */
.veloravelCardioBreathGridBenefitsSec {
    padding: 100px 0;
}

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

.veloravelCardioBreathGridBenefitsFlex > div {
    flex: 1;
}

.veloravelCardioBreathGridUl {
    list-style: none;
}

.veloravelCardioBreathGridUl li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 79, 216, 0.1);
    font-size: 18px;
}

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

.veloravelCardioBreathGridAltBg {
    background: #18001a;
}

.veloravelCardioBreathGridColumns {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.veloravelCardioBreathGridCol {
    flex: 1;
}

.veloravelCardioBreathGridH4 {
    color: #FF4FD8;
    margin-bottom: 15px;
    font-size: 20px;
}

/* FAQ SECTION */
.veloravelCardioBreathGridFaqSec {
    padding: 100px 0;
}

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

.veloravelCardioBreathGridFaqItem {
    margin-bottom: 15px;
    background: #1e0021;
    border-radius: 8px;
    overflow: hidden;
}

.veloravelCardioBreathGridFaqSum {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    border: 1px solid rgba(255, 79, 216, 0.2);
}

.veloravelCardioBreathGridFaqSum::after {
    content: "+";
    position: absolute;
    right: 20px;
    color: #FF4FD8;
}

.veloravelCardioBreathGridFaqAns {
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255, 79, 216, 0.1);
}

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

.veloravelCardioBreathGridFormBox {
    max-width: 600px;
    margin: 0 auto;
    background: #1e0021;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    border: 1px solid #FF4FD8;
}

.veloravelCardioBreathGridInpGrp {
    margin-bottom: 20px;
}

.veloravelCardioBreathGridInpGrp label {
    display: block;
    margin-bottom: 8px;
    color: #FF4FD8;
}

.veloravelCardioBreathGridInpGrp input, 
.veloravelCardioBreathGridInpGrp textarea {
    width: 100%;
    padding: 12px;
    background: #120014;
    border: 1px solid rgba(255, 79, 216, 0.3);
    color: #fff;
    border-radius: 5px;
}

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

.veloravelCardioBreathGridSubmit {
    width: 100%;
    padding: 15px;
    background: #FF4FD8;
    border: none;
    color: #120014;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.veloravelCardioBreathGridSubmit:hover {
    background: #ffffff;
    box-shadow: 0 0 20px #FF4FD8;
}

/* FOOTER */
.veloravelCardioBreathGridFooter {
    padding: 80px 0 40px;
    background: #0d000f;
    border-top: 1px solid rgba(255, 79, 216, 0.2);
}

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

.veloravelCardioBreathGridFooterLogo {
    font-size: 32px;
    font-weight: 800;
    color: #FF4FD8;
}

.veloravelCardioBreathGridFooterInfo a {
    color: #fff;
    text-decoration: none;
}

.veloravelCardioBreathGridFooterBottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

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

.veloravelCardioBreathGridFooterLinks a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
}

.veloravelCardioBreathGridFooterLinks a:hover {
    color: #FF4FD8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .veloravelCardioBreathGridHeroFlex, 
    .veloravelCardioBreathGridBenefitsFlex {
        flex-direction: column;
    }
    .veloravelCardioBreathGridH1 { font-size: 36px; }
}

@media (max-width: 768px) {
    .veloravelCardioBreathGridMenuBtn {
        display: flex;
    }
    .veloravelCardioBreathGridNav {
        display: none;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background: #120014;
        padding: 20px;
        border-bottom: 1px solid #FF4FD8;
    }
    .veloravelCardioBreathGridNavList {
        flex-direction: column;
        align-items: center;
    }
    .veloravelCardioBreathGridMenuToggle:checked ~ .veloravelCardioBreathGridNav {
        display: block;
    }
    .veloravelCardioBreathGridFooterTop {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .veloravelCardioBreathGridColumns {
        flex-direction: column;
    }
}