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

html {
    scroll-behavior: smooth;
}

body.kermudavoliHeartRhythmFieldBody {
    background-color: #0B0020;
    color: #f0f0f0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img.kermudavoliHeartRhythmFieldImageFluid {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Typography */
.kermudavoliHeartRhythmFieldH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #B98CFF;
    text-shadow: 0 0 15px rgba(185, 140, 255, 0.4);
}

.kermudavoliHeartRhythmFieldH2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #B98CFF;
    position: relative;
    padding-bottom: 15px;
}

.kermudavoliHeartRhythmFieldH2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #B98CFF;
    box-shadow: 0 0 10px #B98CFF;
}

.kermudavoliHeartRhythmFieldH3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.kermudavoliHeartRhythmFieldSubline {
    font-size: 1.2rem;
    color: #d1d1d1;
    margin-bottom: 25px;
}

.kermudavoliHeartRhythmFieldText {
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* Header */
.kermudavoliHeartRhythmFieldHeaderMain {
    background-color: #050010;
    border-bottom: 2px solid #B98CFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

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

.kermudavoliHeartRhythmFieldLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #B98CFF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.kermudavoliHeartRhythmFieldNavLink:hover {
    color: #B98CFF;
    text-shadow: 0 0 8px #B98CFF;
}

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

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

.kermudavoliHeartRhythmFieldBurger span {
    width: 30px;
    height: 3px;
    background: #B98CFF;
    transition: 0.3s;
}

/* Buttons */
.kermudavoliHeartRhythmFieldBtnPrimary {
    display: inline-block;
    background-color: #B98CFF;
    color: #0B0020;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #B98CFF;
    cursor: pointer;
}

.kermudavoliHeartRhythmFieldBtnPrimary:hover {
    background-color: transparent;
    color: #B98CFF;
    box-shadow: 0 0 20px #B98CFF;
}

.kermudavoliHeartRhythmFieldBtnSecondary {
    display: inline-block;
    background-color: transparent;
    color: #B98CFF;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #B98CFF;
    cursor: pointer;
}

.kermudavoliHeartRhythmFieldBtnSecondary:hover {
    background-color: #B98CFF;
    color: #0B0020;
    box-shadow: 0 0 15px #B98CFF;
}

.kermudavoliHeartRhythmFieldBtnFull {
    width: 100%;
    text-align: center;
}

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

.kermudavoliHeartRhythmFieldQuickLinks {
    margin-bottom: 60px;
}

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

.kermudavoliHeartRhythmFieldQuickLinksInner a {
    padding: 8px 15px;
    border: 1px solid rgba(185, 140, 255, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #B98CFF;
}

.kermudavoliHeartRhythmFieldQuickLinksInner a:hover {
    background: rgba(185, 140, 255, 0.1);
    border-color: #B98CFF;
}

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

.kermudavoliHeartRhythmFieldHeroImageCol,
.kermudavoliHeartRhythmFieldHeroTextCol {
    flex: 1;
}

/* Pricing Section */
.kermudavoliHeartRhythmFieldPricingSection {
    padding: 100px 0;
    background-color: #050010;
    border-top: 1px solid rgba(185, 140, 255, 0.1);
    border-bottom: 1px solid rgba(185, 140, 255, 0.1);
}

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

.kermudavoliHeartRhythmFieldPriceCard {
    flex: 1 1 300px;
    max-width: 350px;
    background: #0B0020;
    border: 1px solid #B98CFF;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.kermudavoliHeartRhythmFieldPriceCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(185, 140, 255, 0.2);
}

.kermudavoliHeartRhythmFieldPriceCardFeatured {
    background: linear-gradient(135deg, #0B0020 0%, #1a0040 100%);
    border-width: 3px;
    box-shadow: 0 0 20px rgba(185, 140, 255, 0.15);
}

.kermudavoliHeartRhythmFieldPriceTitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #B98CFF;
}

.kermudavoliHeartRhythmFieldPriceValue {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

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

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

.kermudavoliHeartRhythmFieldPriceList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #B98CFF;
}

/* Audience Section */
.kermudavoliHeartRhythmFieldAudienceSection {
    padding: 100px 0;
}

.kermudavoliHeartRhythmFieldAudienceImageTop {
    margin-bottom: 50px;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.2);
}

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

.kermudavoliHeartRhythmFieldAudienceList {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
}

.kermudavoliHeartRhythmFieldAudienceList li {
    background: rgba(185, 140, 255, 0.05);
    padding: 15px;
    border-left: 4px solid #B98CFF;
}

/* Benefits Section */
.kermudavoliHeartRhythmFieldBenefitsSection {
    padding: 100px 0;
    background-color: #050010;
}

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

.kermudavoliHeartRhythmFieldBenefitsTextCol,
.kermudavoliHeartRhythmFieldBenefitsImageCol {
    flex: 1;
}

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

.kermudavoliHeartRhythmFieldBenefitsList li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.kermudavoliHeartRhythmFieldBenefitsList li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23B98CFF" viewBox="0 0 24 24"><path d="M12 0l-12 12 12 12 12-12z"/></svg>') no-repeat center;
    background-size: contain;
}

/* Reviews Slider (CSS Only) */
.kermudavoliHeartRhythmFieldReviewsSection {
    padding: 100px 0;
}

.kermudavoliHeartRhythmFieldReviewsSlider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.kermudavoliHeartRhythmFieldRadioHidden {
    display: none;
}

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

.kermudavoliHeartRhythmFieldReviewCard {
    width: 33.333%;
    padding: 40px;
    background: rgba(185, 140, 255, 0.03);
    border: 1px dashed #B98CFF;
    border-radius: 15px;
    text-align: center;
}

.kermudavoliHeartRhythmFieldQuote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.kermudavoliHeartRhythmFieldCite {
    font-weight: bold;
    color: #B98CFF;
    font-size: 1.1rem;
}

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

.kermudavoliHeartRhythmFieldSliderControls label {
    width: 15px;
    height: 15px;
    border: 2px solid #B98CFF;
    border-radius: 50%;
    cursor: pointer;
}

#kermudavoliRev1:checked ~ .kermudavoliHeartRhythmFieldSliderItems { transform: translateX(0); }
#kermudavoliRev2:checked ~ .kermudavoliHeartRhythmFieldSliderItems { transform: translateX(-33.333%); }
#kermudavoliRev3:checked ~ .kermudavoliHeartRhythmFieldSliderItems { transform: translateX(-66.666%); }

#kermudavoliRev1:checked ~ .kermudavoliHeartRhythmFieldSliderControls label:nth-child(1),
#kermudavoliRev2:checked ~ .kermudavoliHeartRhythmFieldSliderControls label:nth-child(2),
#kermudavoliRev3:checked ~ .kermudavoliHeartRhythmFieldSliderControls label:nth-child(3) {
    background: #B98CFF;
}

/* FAQ Section */
.kermudavoliHeartRhythmFieldFaqSection {
    padding: 100px 0;
    background-color: #050010;
}

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

.kermudavoliHeartRhythmFieldFaqItem {
    margin-bottom: 15px;
    border: 1px solid rgba(185, 140, 255, 0.2);
    border-radius: 8px;
}

.kermudavoliHeartRhythmFieldFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #B98CFF;
    list-style: none;
    position: relative;
}

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

.kermudavoliHeartRhythmFieldFaqSummary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
}

.kermudavoliHeartRhythmFieldFaqItem[open] .kermudavoliHeartRhythmFieldFaqSummary::after {
    content: '-';
}

.kermudavoliHeartRhythmFieldFaqContent {
    padding: 0 20px 20px;
    color: #d1d1d1;
}

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

.kermudavoliHeartRhythmFieldBgAlt {
    background-color: #080018;
}

.kermudavoliHeartRhythmFieldCustomList {
    margin: 25px 0;
    list-style: none;
}

.kermudavoliHeartRhythmFieldCustomList li {
    margin-bottom: 10px;
    padding-left: 20px;
    border-left: 2px solid #B98CFF;
}

.kermudavoliHeartRhythmFieldInfoBox {
    background: rgba(185, 140, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #B98CFF;
    margin-top: 30px;
}

/* Form Section */
.kermudavoliHeartRhythmFieldFormSection {
    padding: 100px 0;
    background: linear-gradient(to bottom, #0B0020, #050010);
}

.kermudavoliHeartRhythmFieldFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #050010;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #B98CFF;
    box-shadow: 0 0 40px rgba(185, 140, 255, 0.1);
}

.kermudavoliHeartRhythmFieldForm {
    margin-top: 30px;
}

.kermudavoliHeartRhythmFieldFormGroup {
    margin-bottom: 20px;
}

.kermudavoliHeartRhythmFieldLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #B98CFF;
}

.kermudavoliHeartRhythmFieldInput,
.kermudavoliHeartRhythmFieldTextarea {
    width: 100%;
    background: #0B0020;
    border: 1px solid rgba(185, 140, 255, 0.3);
    padding: 12px 15px;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
}

.kermudavoliHeartRhythmFieldInput:focus,
.kermudavoliHeartRhythmFieldTextarea:focus {
    outline: none;
    border-color: #B98CFF;
    box-shadow: 0 0 10px rgba(185, 140, 255, 0.3);
}

.kermudavoliHeartRhythmFieldTextarea {
    height: 120px;
    resize: vertical;
}

.kermudavoliHeartRhythmFieldCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.kermudavoliHeartRhythmFieldCheckbox {
    margin-top: 5px;
}

.kermudavoliHeartRhythmFieldLabelCheckbox {
    font-size: 0.85rem;
    color: #ccc;
}

.kermudavoliHeartRhythmFieldLabelCheckbox a {
    color: #B98CFF;
    text-decoration: underline;
}

/* Footer */
.kermudavoliHeartRhythmFieldFooterMain {
    background-color: #050010;
    padding: 60px 0 30px;
    border-top: 2px solid #B98CFF;
}

.kermudavoliHeartRhythmFieldFooterTop {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.kermudavoliHeartRhythmFieldLogoFooter {
    font-size: 1.4rem;
    font-weight: bold;
    color: #B98CFF;
}

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

.kermudavoliHeartRhythmFieldCopyright {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

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

.kermudavoliHeartRhythmFieldFooterLinks a {
    font-size: 0.85rem;
    color: #aaa;
}

.kermudavoliHeartRhythmFieldFooterLinks a:hover {
    color: #B98CFF;
}

/* Responsive */
@media (max-width: 992px) {
    .kermudavoliHeartRhythmFieldH1 { font-size: 2.8rem; }
    .kermudavoliHeartRhythmFieldHeroRow,
    .kermudavoliHeartRhythmFieldBenefitsRow {
        flex-direction: column;
        text-align: center;
    }
    .kermudavoliHeartRhythmFieldBenefitsList li { text-align: left; }
    .kermudavoliHeartRhythmFieldAudienceList { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .kermudavoliHeartRhythmFieldBurger {
        display: flex;
    }
    .kermudavoliHeartRhythmFieldNav {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #050010;
        transition: 0.4s;
        border-bottom: 1px solid #B98CFF;
    }
    .kermudavoliHeartRhythmFieldNavList {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }
    .kermudavoliHeartRhythmFieldMenuCheckbox:checked ~ .kermudavoliHeartRhythmFieldNav {
        left: 0;
    }
    .kermudavoliHeartRhythmFieldMenuCheckbox:checked ~ .kermudavoliHeartRhythmFieldBurger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .kermudavoliHeartRhythmFieldMenuCheckbox:checked ~ .kermudavoliHeartRhythmFieldBurger span:nth-child(2) {
        opacity: 0;
    }
    .kermudavoliHeartRhythmFieldMenuCheckbox:checked ~ .kermudavoliHeartRhythmFieldBurger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    .kermudavoliHeartRhythmFieldFooterTop {
        flex-direction: column;
        text-align: center;
    }
}