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

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

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

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

ul {
    list-style: none;
}

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

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

.tenqenoHeartTempoFieldH2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #B98CFF;
    position: relative;
    display: inline-block;
}

.tenqenoHeartTempoFieldH2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #B98CFF;
    box-shadow: 0 0 10px #B98CFF;
}

.textCenter {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.textCenter::after {
    left: 50%;
    transform: translateX(-50%);
}

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

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

.tenqenoHeartTempoFieldTextPara {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #cccccc;
}

/* HEADER & NAV */
.tenqenoHeartTempoFieldHeaderWrap {
    background: rgba(11, 0, 32, 0.95);
    border-bottom: 2px solid #B98CFF;
    box-shadow: 0 4px 20px rgba(185, 140, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.tenqenoHeartTempoFieldNavLinks {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.tenqenoHeartTempoFieldNavCTA {
    background-color: transparent;
    border: 1px solid #B98CFF;
    padding: 8px 20px;
    border-radius: 5px;
}

.tenqenoHeartTempoFieldNavCTA:hover {
    background-color: #B98CFF;
    color: #0B0020 !important;
}

.tenqenoHeartTempoFieldMenuCheckbox, .tenqenoHeartTempoFieldBurgerBtn {
    display: none;
}

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

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

.tenqenoHeartTempoFieldHeroImageCol {
    flex: 1;
}

.tenqenoHeartTempoFieldHeroMainImg {
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(185, 140, 255, 0.3);
    margin-bottom: 20px;
    object-fit: cover;
}

.tenqenoHeartTempoFieldHeroGallery {
    display: flex;
    gap: 15px;
}

.tenqenoHeartTempoFieldGalleryItem {
    flex: 1;
    border-radius: 10px;
    border: 1px solid #B98CFF;
    transition: transform 0.3s;
}

.tenqenoHeartTempoFieldGalleryItem:hover {
    transform: scale(1.05);
}

.tenqenoHeartTempoFieldHeroTextCol {
    flex: 1;
}

.tenqenoHeartTempoFieldHeroBtns {
    margin-top: 40px;
}

.tenqenoHeartTempoFieldMainBtn {
    display: inline-block;
    background-color: #B98CFF;
    color: #0B0020;
    padding: 15px 40px;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(185, 140, 255, 0.5);
    border: none;
    cursor: pointer;
}

.tenqenoHeartTempoFieldMainBtn:hover {
    background-color: #ffffff;
    box-shadow: 0 0 30px #B98CFF;
    transform: translateY(-2px);
}

/* AUDIENCE SECTION */
.tenqenoHeartTempoFieldAudienceSec {
    padding: 80px 0;
}

.tenqenoHeartTempoFieldSecHeader {
    text-align: center;
    margin-bottom: 60px;
}

.tenqenoHeartTempoFieldIntroText {
    max-width: 800px;
    margin: 20px auto 0;
    color: #aaa;
}

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

.tenqenoHeartTempoFieldAudienceCard {
    flex: 1;
    min-width: 350px;
    background: #150035;
    border: 1px solid #2b0052;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
}

.tenqenoHeartTempoFieldAudienceCard:hover {
    transform: translateY(-10px);
    border-color: #B98CFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tenqenoHeartTempoFieldAudienceImg {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tenqenoHeartTempoFieldAudienceContent {
    padding: 30px;
}

.tenqenoHeartTempoFieldAudienceList {
    margin-top: 20px;
}

.tenqenoHeartTempoFieldAudienceList li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #ccc;
}

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

.tenqenoHeartTempoFieldPriceTag {
    margin-top: 25px;
    font-weight: bold;
    color: #B98CFF;
    font-size: 1.2rem;
    border-top: 1px solid #2b0052;
    padding-top: 15px;
}

/* PRICING SECTION */
.tenqenoHeartTempoFieldPricingSec {
    padding: 80px 0;
    background: linear-gradient(180deg, #0B0020 0%, #150035 100%);
}

.tenqenoHeartTempoFieldPriceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.tenqenoHeartTempoFieldPriceItem {
    flex: 1;
    min-width: 300px;
    background: rgba(43, 0, 82, 0.3);
    border: 1px solid #2b0052;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.tenqenoHeartTempoFieldPriceItemFeatured {
    border: 2px solid #B98CFF;
    transform: scale(1.05);
    background: rgba(43, 0, 82, 0.5);
    box-shadow: 0 0 40px rgba(185, 140, 255, 0.2);
}

.tenqenoHeartTempoFieldPriceHead {
    text-align: center;
    margin-bottom: 30px;
}

.tenqenoHeartTempoFieldPriceTitle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #B98CFF;
}

.tenqenoHeartTempoFieldPriceValue {
    font-size: 2.5rem;
    font-weight: 800;
}

.tenqenoHeartTempoFieldPriceValue span {
    font-size: 1rem;
    color: #aaa;
}

.tenqenoHeartTempoFieldPriceDesc {
    text-align: center;
    color: #ccc;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.tenqenoHeartTempoFieldPriceFeatures {
    margin-bottom: 30px;
    flex-grow: 1;
}

.tenqenoHeartTempoFieldPriceFeatures li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.tenqenoHeartTempoFieldPriceFeatures li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #B98CFF;
    font-weight: bold;
}

.tenqenoHeartTempoFieldQuickLinks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

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

.tenqenoHeartTempoFieldPriceBtn {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid #B98CFF;
    color: #B98CFF;
    border-radius: 5px;
    font-weight: bold;
}

.tenqenoHeartTempoFieldPriceItemFeatured .tenqenoHeartTempoFieldPriceBtn {
    background-color: #B98CFF;
    color: #0B0020;
}

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

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

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

.tenqenoHeartTempoFieldBenefitsTextCol {
    flex: 1.2;
}

.tenqenoHeartTempoFieldBenefitsImageCol {
    flex: 0.8;
}

.tenqenoHeartTempoFieldBenefitsImg {
    border-radius: 50%;
    border: 2px solid #B98CFF;
    padding: 20px;
    box-shadow: 0 0 50px rgba(185, 140, 255, 0.2);
}

.tenqenoHeartTempoFieldBenefitsList {
    margin-top: 30px;
}

.tenqenoHeartTempoFieldBenefitsList li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ddd;
}

.tenqenoHeartTempoFieldBenefitsList li strong {
    color: #B98CFF;
    display: block;
}

/* REVIEW SLIDER SECTION */
.tenqenoHeartTempoFieldReviewSec {
    padding: 100px 0;
    background: #060015;
}

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

.tenqenoHeartTempoFieldSlideInput {
    display: none;
}

.tenqenoHeartTempoFieldSlideContent {
    display: flex;
    transition: 0.5s;
    width: 300%;
}

.tenqenoHeartTempoFieldSlideItem {
    width: 33.333%;
    padding: 40px;
    text-align: center;
}

.tenqenoHeartTempoFieldQuote {
    font-size: 1.5rem;
    font-style: italic;
    color: #E0CFFF;
    margin-bottom: 25px;
    line-height: 1.4;
}

.tenqenoHeartTempoFieldQuoteAuthor {
    font-weight: bold;
    color: #B98CFF;
}

.tenqenoHeartTempoFieldSlideDots {
    text-align: center;
    margin-top: 30px;
}

.tenqenoHeartTempoFieldSlideDots label {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #2b0052;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    border: 1px solid #B98CFF;
}

#tenqenoHeartTempoFieldS1:checked ~ .tenqenoHeartTempoFieldSlideContent { margin-left: 0; }
#tenqenoHeartTempoFieldS2:checked ~ .tenqenoHeartTempoFieldSlideContent { margin-left: -100%; }
#tenqenoHeartTempoFieldS3:checked ~ .tenqenoHeartTempoFieldSlideContent { margin-left: -200%; }

#tenqenoHeartTempoFieldS1:checked ~ .tenqenoHeartTempoFieldSlideDots label:nth-child(1) { background: #B98CFF; }
#tenqenoHeartTempoFieldS2:checked ~ .tenqenoHeartTempoFieldSlideDots label:nth-child(2) { background: #B98CFF; }
#tenqenoHeartTempoFieldS3:checked ~ .tenqenoHeartTempoFieldSlideDots label:nth-child(3) { background: #B98CFF; }

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

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

.tenqenoHeartTempoFieldFAQItem {
    margin-bottom: 15px;
    background: #150035;
    border: 1px solid #2b0052;
    border-radius: 10px;
    overflow: hidden;
}

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

.tenqenoHeartTempoFieldFAQItem summary::-webkit-details-marker {
    display: none;
}

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

.tenqenoHeartTempoFieldFAQItem[open] summary::after {
    content: '−';
}

.tenqenoHeartTempoFieldFAQItem p {
    padding: 0 20px 20px;
    color: #ccc;
}

/* EXTRA CONTENT SECTIONS */
.tenqenoHeartTempoFieldExtraSec {
    padding: 100px 0;
}

.tenqenoHeartTempoFieldAltBg {
    background-color: #060015;
}

.tenqenoHeartTempoFieldAccentBox {
    background: rgba(185, 140, 255, 0.1);
    border-left: 4px solid #B98CFF;
    padding: 30px;
    margin: 40px 0;
    font-size: 1.2rem;
    color: #E0CFFF;
}

.tenqenoHeartTempoFieldListCustom {
    margin: 30px 0;
}

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

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

/* FORM SECTION */
.tenqenoHeartTempoFieldFormSec {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1a0033 0%, #0B0020 100%);
}

.tenqenoHeartTempoFieldFormWrapper {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(21, 0, 53, 0.8);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #B98CFF;
    box-shadow: 0 0 40px rgba(185, 140, 255, 0.1);
}

.tenqenoHeartTempoFieldFormSub {
    margin-bottom: 40px;
    color: #aaa;
}

.tenqenoHeartTempoFieldFormElement {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tenqenoHeartTempoFieldFormGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tenqenoHeartTempoFieldFormGroup label {
    font-weight: bold;
    color: #B98CFF;
}

.tenqenoHeartTempoFieldFormGroup input, 
.tenqenoHeartTempoFieldFormGroup textarea {
    padding: 15px;
    background: #0b0020;
    border: 1px solid #2b0052;
    border-radius: 8px;
    color: #fff;
    outline: none;
}

.tenqenoHeartTempoFieldFormGroup input:focus, 
.tenqenoHeartTempoFieldFormGroup textarea:focus {
    border-color: #B98CFF;
    box-shadow: 0 0 10px rgba(185, 140, 255, 0.3);
}

.tenqenoHeartTempoFieldFormCheck {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #aaa;
}

.tenqenoHeartTempoFieldFormCheck input {
    margin-top: 4px;
}

.tenqenoHeartTempoFieldFormCheck a {
    color: #B98CFF;
}

.tenqenoHeartTempoFieldFormSubmit {
    text-align: center;
    margin-top: 20px;
}

/* FOOTER */
.tenqenoHeartTempoFieldFooterWrap {
    padding: 80px 0 40px;
    background: #060015;
    border-top: 1px solid #2b0052;
}

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

.tenqenoHeartTempoFieldFooterBrand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #B98CFF;
}

.tenqenoHeartTempoFieldFooterContact p {
    color: #aaa;
    margin-bottom: 5px;
}

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

.tenqenoHeartTempoFieldFooterMiddle {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #1a0033;
    border-bottom: 1px solid #1a0033;
    margin-bottom: 30px;
    color: #777;
}

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

.tenqenoHeartTempoFieldFooterLinks a {
    font-size: 0.85rem;
    color: #999;
}

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

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .tenqenoHeartTempoFieldHeroFlex,
    .tenqenoHeartTempoFieldBenefitsFlex {
        flex-direction: column;
        text-align: center;
    }
    
    .tenqenoHeartTempoFieldH1 {
        font-size: 2.5rem;
    }
    
    .tenqenoHeartTempoFieldHeroImageCol, .tenqenoHeartTempoFieldHeroTextCol {
        width: 100%;
    }

    .tenqenoHeartTempoFieldPriceItemFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .tenqenoHeartTempoFieldBurgerBtn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .tenqenoHeartTempoFieldBurgerBtn span {
        width: 30px;
        height: 3px;
        background: #B98CFF;
        border-radius: 2px;
    }

    .tenqenoHeartTempoFieldNavLinks {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #0B0020;
        flex-direction: column;
        padding: 50px 0;
        transition: 0.5s;
    }

    .tenqenoHeartTempoFieldMenuCheckbox:checked ~ .tenqenoHeartTempoFieldNavLinks {
        left: 0;
    }

    .tenqenoHeartTempoFieldH2 {
        font-size: 2rem;
    }

    .tenqenoHeartTempoFieldFormWrapper {
        padding: 30px;
    }

    .tenqenoHeartTempoFieldHeroGallery {
        justify-content: center;
    }
}