/* Основні налаштування та змінні */
:root {
    --terqenoSoftCardioBloomBg: #050A18;
    --terqenoSoftCardioBloomPrimary: #6AA9FF;
    --terqenoSoftCardioBloomSecondary: #0a142d;
    --terqenoSoftCardioBloomAccent: #00ffe0;
    --terqenoSoftCardioBloomText: #FFFFFF;
    --terqenoSoftCardioBloomMuted: #A0B0D0;
    --terqenoSoftCardioBloomShadow: rgba(0, 255, 224, 0.1);
    --terqenoSoftCardioBloomHeaderGlow: rgba(106, 169, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Header & Navigation */
.terqenoSoftCardioBloomHeader {
    background: var(--terqenoSoftCardioBloomSecondary);
    box-shadow: 0 4px 20px var(--terqenoSoftCardioBloomHeaderGlow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(106, 169, 255, 0.3);
}

.terqenoSoftCardioBloomHeaderContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terqenoSoftCardioBloomLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--terqenoSoftCardioBloomPrimary);
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--terqenoSoftCardioBloomPrimary);
}

.terqenoSoftCardioBloomNavList {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.terqenoSoftCardioBloomNavLink {
    text-decoration: none;
    color: var(--terqenoSoftCardioBloomText);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.terqenoSoftCardioBloomNavLink:hover {
    color: var(--terqenoSoftCardioBloomPrimary);
}

.terqenoSoftCardioBloomMenuCheckbox {
    display: none;
}

/* Hero Section */
.terqenoSoftCardioBloomHero {
    padding: 4rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.terqenoSoftCardioBloomQuickLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.terqenoSoftCardioBloomQuickBtn {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--terqenoSoftCardioBloomPrimary);
    color: var(--terqenoSoftCardioBloomPrimary);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.terqenoSoftCardioBloomQuickBtn:hover {
    background: var(--terqenoSoftCardioBloomPrimary);
    color: #fff;
    box-shadow: 0 0 15px var(--terqenoSoftCardioBloomPrimary);
}

.terqenoSoftCardioBloomHeroContainer {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.terqenoSoftCardioBloomHeroImageCol {
    flex: 1;
}

.terqenoSoftCardioBloomHeroImg {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.terqenoSoftCardioBloomHeroTextCol {
    flex: 1.2;
}

.terqenoSoftCardioBloomHeroH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.terqenoSoftCardioBloomHeroSub {
    font-size: 1.3rem;
    color: var(--terqenoSoftCardioBloomPrimary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.terqenoSoftCardioBloomHeroDesc {
    margin-bottom: 1.5rem;
    color: var(--terqenoSoftCardioBloomMuted);
    font-size: 1.1rem;
}

.terqenoSoftCardioBloomCtaBtn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--terqenoSoftCardioBloomPrimary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
    margin-top: 1rem;
    text-transform: uppercase;
}

.terqenoSoftCardioBloomCtaBtn:hover {
    box-shadow: 0 0 0 3px transparent, 0 0 0 5px var(--terqenoSoftCardioBloomPrimary);
    background: transparent;
}

/* Prices Section */
.terqenoSoftCardioBloomPrices {
    padding: 6rem 2rem;
    background: rgba(10, 20, 45, 0.5);
    border-top: 1px solid rgba(106, 169, 255, 0.1);
    border-bottom: 1px solid rgba(106, 169, 255, 0.1);
}

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

.terqenoSoftCardioBloomSectionTitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--terqenoSoftCardioBloomPrimary);
    margin: 1rem auto;
}

.terqenoSoftCardioBloomPricesGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.terqenoSoftCardioBloomPriceCard {
    background: var(--terqenoSoftCardioBloomSecondary);
    border: 1px solid rgba(106, 169, 255, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    flex: 1 1 300px;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.terqenoSoftCardioBloomPriceCard:hover {
    transform: translateY(-10px);
    border-color: var(--terqenoSoftCardioBloomPrimary);
}

.terqenoSoftCardioBloomPriceFeatured {
    border-color: var(--terqenoSoftCardioBloomAccent);
    transform: scale(1.05);
}

.terqenoSoftCardioBloomDiscountTag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--terqenoSoftCardioBloomAccent);
    color: #050A18;
    padding: 0.3rem 1rem;
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.8rem;
}

.terqenoSoftCardioBloomPriceName {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--terqenoSoftCardioBloomPrimary);
}

.terqenoSoftCardioBloomPriceValue {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.terqenoSoftCardioBloomPriceList {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.terqenoSoftCardioBloomPriceList li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--terqenoSoftCardioBloomMuted);
}

.terqenoSoftCardioBloomPriceBtn {
    display: block;
    text-align: center;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--terqenoSoftCardioBloomPrimary);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.terqenoSoftCardioBloomPriceBtn:hover {
    background: var(--terqenoSoftCardioBloomPrimary);
}

/* Reviews Slider */
.terqenoSoftCardioBloomReviews {
    padding: 6rem 2rem;
    background: var(--terqenoSoftCardioBloomBg);
}

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

.terqenoSoftCardioBloomRadioHidden {
    display: none;
}

.terqenoSoftCardioBloomSlides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.terqenoSoftCardioBloomSlideItem {
    width: 33.333%;
    padding: 2rem;
}

.terqenoSoftCardioBloomQuote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--terqenoSoftCardioBloomMuted);
    margin-bottom: 2rem;
}

.terqenoSoftCardioBloomCite {
    display: block;
    font-style: normal;
    font-weight: bold;
    color: var(--terqenoSoftCardioBloomPrimary);
    font-size: 1.1rem;
}

.terqenoSoftCardioBloomSliderNav {
    margin-top: 2rem;
}

.terqenoSoftCardioBloomNavDot {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: rgba(106, 169, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

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

#rev1:checked ~ .terqenoSoftCardioBloomSliderNav label[for="rev1"] { background: var(--terqenoSoftCardioBloomPrimary); box-shadow: 0 0 10px var(--terqenoSoftCardioBloomPrimary); }
#rev2:checked ~ .terqenoSoftCardioBloomSliderNav label[for="rev2"] { background: var(--terqenoSoftCardioBloomPrimary); box-shadow: 0 0 10px var(--terqenoSoftCardioBloomPrimary); }
#rev3:checked ~ .terqenoSoftCardioBloomSliderNav label[for="rev3"] { background: var(--terqenoSoftCardioBloomPrimary); box-shadow: 0 0 10px var(--terqenoSoftCardioBloomPrimary); }

/* Benefits Section */
.terqenoSoftCardioBloomBenefits {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--terqenoSoftCardioBloomBg) 0%, var(--terqenoSoftCardioBloomSecondary) 100%);
}

.terqenoSoftCardioBloomBenefitsContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.terqenoSoftCardioBloomBenefitsText {
    flex: 1.2;
}

.terqenoSoftCardioBloomBenefitsImage {
    flex: 1;
}

.terqenoSoftCardioBloomImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 40px rgba(0,0,0,0.5);
}

.terqenoSoftCardioBloomList {
    list-style: none;
    margin-top: 2rem;
}

.terqenoSoftCardioBloomListItem {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.terqenoSoftCardioBloomListItem::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--terqenoSoftCardioBloomAccent);
    font-weight: bold;
}

/* Target Section */
.terqenoSoftCardioBloomTarget {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.terqenoSoftCardioBloomSectionSub {
    text-align: center;
    color: var(--terqenoSoftCardioBloomMuted);
    max-width: 700px;
    margin: -3rem auto 4rem;
    font-size: 1.1rem;
}

.terqenoSoftCardioBloomTargetGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.terqenoSoftCardioBloomTargetItem {
    flex: 1 1 300px;
    padding: 2rem;
    background: var(--terqenoSoftCardioBloomSecondary);
    border-left: 4px solid var(--terqenoSoftCardioBloomPrimary);
    border-radius: 5px;
    transition: 0.3s;
}

.terqenoSoftCardioBloomTargetItem:hover {
    background: rgba(106, 169, 255, 0.05);
    border-left-color: var(--terqenoSoftCardioBloomAccent);
}

.terqenoSoftCardioBloomTargetTitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--terqenoSoftCardioBloomPrimary);
}

/* Extra Text Sections */
.terqenoSoftCardioBloomExtra {
    padding: 5rem 2rem;
}

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

.terqenoSoftCardioBloomH2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.terqenoSoftCardioBloomP {
    margin-bottom: 1.5rem;
    color: var(--terqenoSoftCardioBloomMuted);
    font-size: 1.1rem;
}

/* FAQ Section */
.terqenoSoftCardioBloomFaq {
    padding: 6rem 2rem;
    background: var(--terqenoSoftCardioBloomSecondary);
}

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

.terqenoSoftCardioBloomFaqItem {
    margin-bottom: 1rem;
    border: 1px solid rgba(106, 169, 255, 0.2);
    border-radius: 8px;
    background: var(--terqenoSoftCardioBloomBg);
}

.terqenoSoftCardioBloomFaqSummary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--terqenoSoftCardioBloomPrimary);
    list-style: none;
    position: relative;
}

.terqenoSoftCardioBloomFaqSummary::-webkit-details-marker {
    display: none;
}

.terqenoSoftCardioBloomFaqSummary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
}

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

.terqenoSoftCardioBloomFaqContent {
    padding: 0 1.5rem 1.5rem;
    color: var(--terqenoSoftCardioBloomMuted);
}

/* Form Section */
.terqenoSoftCardioBloomFormSec {
    padding: 6rem 2rem;
}

.terqenoSoftCardioBloomFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--terqenoSoftCardioBloomSecondary);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(106, 169, 255, 0.1);
}

.terqenoSoftCardioBloomInputGroup {
    margin-bottom: 1.5rem;
}

.terqenoSoftCardioBloomLabel {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--terqenoSoftCardioBloomMuted);
}

.terqenoSoftCardioBloomInput, .terqenoSoftCardioBloomTextarea {
    width: 100%;
    padding: 1rem;
    background: var(--terqenoSoftCardioBloomBg);
    border: 1px solid rgba(106, 169, 255, 0.3);
    color: #fff;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
}

.terqenoSoftCardioBloomInput:focus, .terqenoSoftCardioBloomTextarea:focus {
    border-color: var(--terqenoSoftCardioBloomPrimary);
    box-shadow: 0 0 10px rgba(106, 169, 255, 0.2);
}

.terqenoSoftCardioBloomCheckboxGroup {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.terqenoSoftCardioBloomCheckboxLabel {
    font-size: 0.9rem;
    color: var(--terqenoSoftCardioBloomMuted);
}

.terqenoSoftCardioBloomCheckboxLabel a {
    color: var(--terqenoSoftCardioBloomPrimary);
}

.terqenoSoftCardioBloomSubmitBtn {
    width: 100%;
    padding: 1.2rem;
    background: var(--terqenoSoftCardioBloomPrimary);
    border: none;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.terqenoSoftCardioBloomSubmitBtn:hover {
    box-shadow: 0 0 20px var(--terqenoSoftCardioBloomPrimary);
}

/* Footer */
.terqenoSoftCardioBloomFooter {
    background: var(--terqenoSoftCardioBloomSecondary);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(106, 169, 255, 0.2);
}

.terqenoSoftCardioBloomFooterContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.terqenoSoftCardioBloomCopyright {
    margin-bottom: 1rem;
}

.terqenoSoftCardioBloomFooterEmail a {
    color: var(--terqenoSoftCardioBloomPrimary);
    text-decoration: none;
}

.terqenoSoftCardioBloomFooterLinks {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.terqenoSoftCardioBloomFootLink {
    color: var(--terqenoSoftCardioBloomMuted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.terqenoSoftCardioBloomFootLink:hover {
    color: var(--terqenoSoftCardioBloomAccent);
}

.terqenoSoftCardioBloomFooterAddress {
    font-size: 0.8rem;
    color: var(--terqenoSoftCardioBloomMuted);
}

/* Burger Menu Mobile */
@media (max-width: 768px) {
    .terqenoSoftCardioBloomNav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--terqenoSoftCardioBloomBg);
        transition: 0.4s;
        padding: 2rem;
    }

    .terqenoSoftCardioBloomNavList {
        flex-direction: column;
        align-items: center;
    }

    .terqenoSoftCardioBloomMenuBtn {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }

    .terqenoSoftCardioBloomMenuBtn span, 
    .terqenoSoftCardioBloomMenuBtn span::before, 
    .terqenoSoftCardioBloomMenuBtn span::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--terqenoSoftCardioBloomPrimary);
        transition: 0.3s;
    }

    .terqenoSoftCardioBloomMenuBtn span { top: 9px; }
    .terqenoSoftCardioBloomMenuBtn span::before { top: -9px; }
    .terqenoSoftCardioBloomMenuBtn span::after { top: 9px; }

    .terqenoSoftCardioBloomMenuCheckbox:checked ~ .terqenoSoftCardioBloomNav {
        left: 0;
    }

    .terqenoSoftCardioBloomHeroContainer, 
    .terqenoSoftCardioBloomBenefitsContainer {
        flex-direction: column;
    }

    .terqenoSoftCardioBloomHeroH1 {
        font-size: 2.5rem;
    }
}