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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.tenoravixDailyRenewWave_BodyMain {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #07090C;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* HEADINGS */
.tenoravixDailyRenewWave_H1 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tenoravixDailyRenewWave_H2 {
    font-size: 2.2rem;
    color: #4FF7FF;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.tenoravixDailyRenewWave_H2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4FF7FF;
}

.tenoravixDailyRenewWave_H3 {
    font-size: 1.4rem;
    color: #4FF7FF;
    margin-bottom: 10px;
}

/* HEADER */
.tenoravixDailyRenewWave_HeaderWrapper {
    background-color: #0B0E13;
    border-bottom: 2px solid #4FF7FF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.tenoravixDailyRenewWave_HeaderInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tenoravixDailyRenewWave_LogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4FF7FF;
    text-transform: uppercase;
}

.tenoravixDailyRenewWave_NavToggleCheckbox {
    display: none;
}

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

.tenoravixDailyRenewWave_BurgerButton span {
    width: 30px;
    height: 3px;
    background-color: #4FF7FF;
    transition: 0.3s;
}

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

.tenoravixDailyRenewWave_NavLink {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.tenoravixDailyRenewWave_NavLink:hover {
    color: #4FF7FF;
}

/* HERO */
.tenoravixDailyRenewWave_HeroSection {
    padding: 80px 0;
    background-color: #07090C;
}

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

.tenoravixDailyRenewWave_HeroImageBlock {
    flex: 1;
    min-width: 350px;
}

.tenoravixDailyRenewWave_HeroImg {
    border-left: 4px solid #4FF7FF;
    border-bottom: 4px solid #4FF7FF;
    box-shadow: 15px 15px 0px rgba(79, 247, 255, 0.05);
}

.tenoravixDailyRenewWave_HeroTextBlock {
    flex: 1.2;
    min-width: 350px;
}

.tenoravixDailyRenewWave_SubHeadline {
    font-size: 1.25rem;
    color: #A0A0A0;
    margin-bottom: 35px;
}

.tenoravixDailyRenewWave_HeroFeature {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 1px solid rgba(79, 247, 255, 0.3);
}

.tenoravixDailyRenewWave_CtaButtonMain {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4FF7FF;
    color: #07090C;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    margin-top: 20px;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(79, 247, 255, 0.3);
}

.tenoravixDailyRenewWave_CtaButtonMain:hover {
    box-shadow: 0 0 20px rgba(79, 247, 255, 0.6);
    transform: translateY(-2px);
}

/* PRICING */
.tenoravixDailyRenewWave_PricingSection {
    padding: 80px 0;
    background-color: #0B0E13;
}

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

.tenoravixDailyRenewWave_PriceCard {
    background-color: #07090C;
    border: 1px solid #1A1F26;
    padding: 40px 30px;
    flex: 1;
    min-width: 270px;
    max-width: 350px;
    transition: border-color 0.3s;
}

.tenoravixDailyRenewWave_PriceCardFeatured {
    border: 1px solid #4FF7FF;
    transform: scale(1.05);
}

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

.tenoravixDailyRenewWave_PriceTitle {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.tenoravixDailyRenewWave_PriceValue {
    font-size: 2.2rem;
    color: #4FF7FF;
    font-weight: 800;
}

.tenoravixDailyRenewWave_PriceList {
    list-style: none;
    margin-bottom: 40px;
}

.tenoravixDailyRenewWave_PriceItem {
    padding: 10px 0;
    border-bottom: 1px solid #1A1F26;
    font-size: 0.95rem;
}

.tenoravixDailyRenewWave_PriceItem::before {
    content: '→';
    color: #4FF7FF;
    margin-right: 10px;
}

.tenoravixDailyRenewWave_PriceBtn {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}

.tenoravixDailyRenewWave_PriceBtn:hover {
    background-color: #4FF7FF;
    color: #07090C;
}

/* TARGET AUDIENCE */
.tenoravixDailyRenewWave_TargetSection {
    padding: 80px 0;
}

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

.tenoravixDailyRenewWave_TargetTextBlock {
    flex: 1;
    min-width: 350px;
}

.tenoravixDailyRenewWave_LeadText {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.tenoravixDailyRenewWave_TargetList {
    list-style: none;
}

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

.tenoravixDailyRenewWave_TargetListItem::before {
    content: '>>';
    position: absolute;
    left: 0;
    color: #4FF7FF;
    font-weight: bold;
}

.tenoravixDailyRenewWave_TargetImageBlock {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.tenoravixDailyRenewWave_TargetPriceBadge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #4FF7FF;
    color: #07090C;
    padding: 15px 25px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* BENEFITS */
.tenoravixDailyRenewWave_BenefitsSection {
    padding: 80px 0;
    background-color: #0B0E13;
}

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

.tenoravixDailyRenewWave_BenefitsContent {
    flex: 1.2;
    min-width: 350px;
}

.tenoravixDailyRenewWave_BenefitsMedia {
    flex: 1;
    min-width: 350px;
}

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

.tenoravixDailyRenewWave_BenefitsDetailsItem {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #07090C;
    border-left: 3px solid #4FF7FF;
}

/* QUOTE */
.tenoravixDailyRenewWave_QuoteSection {
    padding: 100px 0;
    background-color: #07090C;
}

.tenoravixDailyRenewWave_QuoteBox {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tenoravixDailyRenewWave_Blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.4;
    position: relative;
}

.tenoravixDailyRenewWave_AuthorLine {
    width: 40px;
    height: 2px;
    background-color: #4FF7FF;
    margin: 0 auto 20px;
}

.tenoravixDailyRenewWave_AuthorName {
    font-weight: 800;
    font-size: 1.2rem;
    color: #4FF7FF;
}

.tenoravixDailyRenewWave_AuthorRole {
    font-size: 0.9rem;
    color: #A0A0A0;
}

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

.tenoravixDailyRenewWave_BgAlt {
    background-color: #0B0E13;
}

.tenoravixDailyRenewWave_ArticleContent p {
    margin-bottom: 20px;
    color: #CCCCCC;
}

.tenoravixDailyRenewWave_StyledUl {
    list-style: none;
    margin: 30px 0;
}

.tenoravixDailyRenewWave_StyledUl li {
    padding: 10px 0 10px 40px;
    position: relative;
}

.tenoravixDailyRenewWave_StyledUl li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 1px;
    background-color: #4FF7FF;
}

/* FAQ */
.tenoravixDailyRenewWave_FaqSection {
    padding: 80px 0;
    background-color: #0B0E13;
}

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

.tenoravixDailyRenewWave_FaqItem {
    background-color: #07090C;
    margin-bottom: 15px;
    border: 1px solid #1A1F26;
}

.tenoravixDailyRenewWave_FaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #FFFFFF;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tenoravixDailyRenewWave_FaqSummary::after {
    content: '+';
    color: #4FF7FF;
    font-size: 1.5rem;
}

.tenoravixDailyRenewWave_FaqItem[open] .tenoravixDailyRenewWave_FaqSummary::after {
    content: '-';
}

.tenoravixDailyRenewWave_FaqAnswer {
    padding: 0 20px 20px;
    color: #A0A0A0;
    border-top: 1px solid #1A1F26;
    margin-top: 5px;
    padding-top: 15px;
}

/* FORM */
.tenoravixDailyRenewWave_FormSection {
    padding: 100px 0;
    background-color: #07090C;
}

.tenoravixDailyRenewWave_FormBox {
    max-width: 600px;
    margin: 0 auto;
    background-color: #0B0E13;
    padding: 50px;
    border: 1px solid #1A1F26;
    position: relative;
}

.tenoravixDailyRenewWave_FormBox::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border-top: 2px solid #4FF7FF;
    border-left: 2px solid #4FF7FF;
}

.tenoravixDailyRenewWave_FormGroup {
    margin-bottom: 25px;
}

.tenoravixDailyRenewWave_Label {
    display: block;
    margin-bottom: 8px;
    color: #4FF7FF;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tenoravixDailyRenewWave_Input, 
.tenoravixDailyRenewWave_Textarea {
    width: 100%;
    padding: 15px;
    background-color: #07090C;
    border: 1px solid #1A1F26;
    color: #FFFFFF;
    font-family: inherit;
    transition: border-color 0.3s;
}

.tenoravixDailyRenewWave_Input:focus, 
.tenoravixDailyRenewWave_Textarea:focus {
    outline: none;
    border-color: #4FF7FF;
}

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

.tenoravixDailyRenewWave_CheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.tenoravixDailyRenewWave_CheckboxLabel {
    font-size: 0.85rem;
    color: #A0A0A0;
}

.tenoravixDailyRenewWave_InlineLink {
    color: #4FF7FF;
    text-decoration: none;
}

.tenoravixDailyRenewWave_SubmitBtn {
    width: 100%;
    padding: 18px;
    background-color: #4FF7FF;
    color: #07090C;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.tenoravixDailyRenewWave_SubmitBtn:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 20px rgba(79, 247, 255, 0.4);
}

/* FOOTER */
.tenoravixDailyRenewWave_FooterWrapper {
    background-color: #0B0E13;
    padding: 60px 0 30px;
    border-top: 1px solid #1A1F26;
}

.tenoravixDailyRenewWave_FooterTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.tenoravixDailyRenewWave_FooterBrand {
    font-size: 1.5rem;
    color: #4FF7FF;
    font-weight: 800;
}

.tenoravixDailyRenewWave_FooterContact p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #A0A0A0;
}

.tenoravixDailyRenewWave_FooterLink {
    color: #E0E0E0;
    text-decoration: none;
}

.tenoravixDailyRenewWave_FooterBottom {
    border-top: 1px solid #1A1F26;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tenoravixDailyRenewWave_Copy {
    font-size: 0.85rem;
    color: #666;
}

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

.tenoravixDailyRenewWave_FooterNavSideLink {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.tenoravixDailyRenewWave_FooterNavSideLink:hover {
    color: #4FF7FF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .tenoravixDailyRenewWave_H1 { font-size: 2.5rem; }
    .tenoravixDailyRenewWave_HeroFlex { flex-direction: column; }
    .tenoravixDailyRenewWave_TargetFlex { flex-direction: column-reverse; }
    .tenoravixDailyRenewWave_PriceCardFeatured { transform: scale(1); }
}

@media (max-width: 768px) {
    .tenoravixDailyRenewWave_BurgerButton { display: flex; }
    
    .tenoravixDailyRenewWave_NavigationMenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0B0E13;
        padding: 20px;
        border-bottom: 2px solid #4FF7FF;
    }

    .tenoravixDailyRenewWave_NavToggleCheckbox:checked ~ .tenoravixDailyRenewWave_NavigationMenu {
        display: block;
    }

    .tenoravixDailyRenewWave_NavList {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .tenoravixDailyRenewWave_H2 { font-size: 1.8rem; }
    .tenoravixDailyRenewWave_FormBox { padding: 30px 20px; }
}