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

html {
    scroll-behavior: smooth;
}

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

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

img.tenxiroRestoreRenewCanvasImg {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* TYPOGRAPHY */
.tenxiroRestoreRenewCanvasH1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #B98CFF;
    text-shadow: 0 0 20px rgba(185, 140, 255, 0.4);
}

.tenxiroRestoreRenewCanvasH2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #B98CFF;
}

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

.tenxiroRestoreRenewCanvasSubtitle {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #D1D1D1;
}

.tenxiroRestoreRenewCanvasText {
    margin-bottom: 15px;
    color: #E0E0E0;
    font-size: 1.05rem;
}

/* HEADER */
.tenxiroRestoreRenewCanvasHeader {
    background-color: rgba(11, 0, 32, 0.95);
    border-bottom: 2px solid #B98CFF;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

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

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

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

.tenxiroRestoreRenewCanvasNavLink {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.3s;
}

.tenxiroRestoreRenewCanvasNavLink:hover {
    color: #B98CFF;
    text-shadow: 0 0 10px #B98CFF;
}

/* BURGER MENU (No JS) */
.tenxiroRestoreRenewCanvasMenuInput {
    display: none;
}

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

.tenxiroRestoreRenewCanvasBurger span {
    width: 25px;
    height: 3px;
    background-color: #B98CFF;
    transition: 0.3s;
}

/* HERO SECTION */
.tenxiroRestoreRenewCanvasHeroSection {
    padding: 100px 0;
    background: linear-gradient(135deg, #0B0020 0%, #1A0033 100%);
    position: relative;
}

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

.tenxiroRestoreRenewCanvasHeroLeft {
    flex: 1;
}

.tenxiroRestoreRenewCanvasHeroRight {
    flex: 1;
}

.tenxiroRestoreRenewCanvasHeroImages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tenxiroRestoreRenewCanvasHeroImgItem:nth-child(1) {
    grid-column: span 2;
}

.tenxiroRestoreRenewCanvasImgDesc {
    font-size: 0.85rem;
    margin-top: 5px;
    color: #B98CFF;
    font-style: italic;
}

.tenxiroRestoreRenewCanvasCtaWrap {
    margin-top: 30px;
}

.tenxiroRestoreRenewCanvasBtnPrimary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #B98CFF;
    color: #0B0020;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.tenxiroRestoreRenewCanvasBtnPrimary:hover {
    background-color: #D4BFFF;
    box-shadow: 0 0 20px #B98CFF;
    transform: translateY(-2px);
}

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

.tenxiroRestoreRenewCanvasSectionIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.tenxiroRestoreRenewCanvasAudienceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.tenxiroRestoreRenewCanvasAudienceCard {
    flex: 1 1 calc(33.333% - 30px);
    background: #1A0033;
    padding: 20px;
    border: 1px solid #330066;
    border-radius: 12px;
    transition: transform 0.3s;
}

.tenxiroRestoreRenewCanvasAudienceCard:hover {
    transform: translateY(-10px);
    border-color: #B98CFF;
}

.tenxiroRestoreRenewCanvasAudienceCard img {
    margin-bottom: 20px;
}

.tenxiroRestoreRenewCanvasPriceTag {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #B98CFF;
}

.tenxiroRestoreRenewCanvasCheckList {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tenxiroRestoreRenewCanvasCheckItem::before {
    content: '✦';
    color: #B98CFF;
    margin-right: 10px;
}

/* PRICE SECTION */
.tenxiroRestoreRenewCanvasPriceSection {
    padding: 80px 0;
    background-color: #080018;
}

.tenxiroRestoreRenewCanvasPriceGrid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.tenxiroRestoreRenewCanvasPriceCard {
    flex: 1;
    background: #1A0033;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #330066;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tenxiroRestoreRenewCanvasPriceCardBest {
    border: 2px solid #B98CFF;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.2);
    transform: scale(1.05);
}

.tenxiroRestoreRenewCanvasPriceBadge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #B98CFF;
    color: #0B0020;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.tenxiroRestoreRenewCanvasPriceTitle {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.tenxiroRestoreRenewCanvasPriceValue {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #B98CFF;
    margin-bottom: 30px;
}

.tenxiroRestoreRenewCanvasPriceList {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.tenxiroRestoreRenewCanvasPriceList li {
    padding: 10px 0;
    border-bottom: 1px solid #25004d;
}

.tenxiroRestoreRenewCanvasPriceQuickLinks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tenxiroRestoreRenewCanvasPriceQuickLinks a {
    text-decoration: none;
    text-align: center;
    padding: 10px;
    border: 1px solid #B98CFF;
    border-radius: 4px;
    color: #B98CFF;
    font-size: 0.9rem;
    transition: 0.3s;
}

.tenxiroRestoreRenewCanvasPriceQuickLinks a:hover {
    background: #B98CFF;
    color: #0B0020;
}

/* BENEFITS SECTION */
.tenxiroRestoreRenewCanvasBenefitsSection {
    padding: 80px 0;
}

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

.tenxiroRestoreRenewCanvasBenefitsText, .tenxiroRestoreRenewCanvasBenefitsImgWrap {
    flex: 1;
}

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

.tenxiroRestoreRenewCanvasBenefitList li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.tenxiroRestoreRenewCanvasBenefitList li::before {
    content: '';
    width: 15px;
    height: 15px;
    background: #B98CFF;
    position: absolute;
    left: 0;
    top: 5px;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}

/* QUOTE SECTION */
.tenxiroRestoreRenewCanvasQuoteSection {
    padding: 100px 0;
    background: linear-gradient(to right, #0B0020, #25004d, #0B0020);
}

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

.tenxiroRestoreRenewCanvasQuoteText {
    font-size: 1.8rem;
    font-style: italic;
    color: #D4BFFF;
    margin-bottom: 30px;
    line-height: 1.4;
}

.tenxiroRestoreRenewCanvasQuoteAuthor {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #B98CFF;
}

/* INFO TEXT SECTIONS */
.tenxiroRestoreRenewCanvasInfoTextSection {
    padding: 70px 0;
}

.tenxiroRestoreRenewCanvasAltBg {
    background-color: #0E0028;
}

.tenxiroRestoreRenewCanvasInfoList {
    margin: 20px 0;
    padding-left: 20px;
}

.tenxiroRestoreRenewCanvasInfoList li {
    margin-bottom: 10px;
    color: #B98CFF;
}

/* FAQ SECTION */
.tenxiroRestoreRenewCanvasFaqSection {
    padding: 80px 0;
}

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

.tenxiroRestoreRenewCanvasFaqItem {
    background: #1A0033;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #330066;
}

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

.tenxiroRestoreRenewCanvasFaqTitle::after {
    content: '+';
    font-size: 1.5rem;
    color: #B98CFF;
}

.tenxiroRestoreRenewCanvasFaqItem[open] .tenxiroRestoreRenewCanvasFaqTitle::after {
    content: '-';
}

.tenxiroRestoreRenewCanvasFaqContent {
    padding: 0 20px 20px;
    color: #D1D1D1;
}

/* FORM SECTION */
.tenxiroRestoreRenewCanvasFormSection {
    padding: 80px 0;
    background: url('https://placehold.co/1200x800/0b0020/0b0020?text= ') center/cover no-repeat;
}

.tenxiroRestoreRenewCanvasFormCard {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 0, 51, 0.9);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #B98CFF;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.tenxiroRestoreRenewCanvasMainForm {
    margin-top: 30px;
}

.tenxiroRestoreRenewCanvasInputGroup {
    margin-bottom: 20px;
}

.tenxiroRestoreRenewCanvasLabel {
    display: block;
    margin-bottom: 8px;
    color: #B98CFF;
}

.tenxiroRestoreRenewCanvasInput, .tenxiroRestoreRenewCanvasTextarea {
    width: 100%;
    padding: 12px;
    background: #0B0020;
    border: 1px solid #330066;
    border-radius: 4px;
    color: #FFFFFF;
    outline: none;
    transition: 0.3s;
}

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

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

.tenxiroRestoreRenewCanvasCheckLabel {
    font-size: 0.9rem;
}

.tenxiroRestoreRenewCanvasCheckLabel a {
    color: #B98CFF;
}

.tenxiroRestoreRenewCanvasBtnSubmit {
    width: 100%;
    padding: 15px;
    background: #B98CFF;
    border: none;
    border-radius: 4px;
    color: #0B0020;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.tenxiroRestoreRenewCanvasBtnSubmit:hover {
    background: #D4BFFF;
    box-shadow: 0 0 20px #B98CFF;
}

/* FOOTER */
.tenxiroRestoreRenewCanvasFooter {
    background: #050010;
    padding: 60px 0 30px;
    border-top: 1px solid #330066;
}

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

.tenxiroRestoreRenewCanvasFooterInfo {
    flex: 2;
    min-width: 300px;
}

.tenxiroRestoreRenewCanvasFooterInfo p {
    margin-top: 15px;
    color: #A0A0A0;
}

.tenxiroRestoreRenewCanvasFooterContacts {
    flex: 1;
    min-width: 250px;
}

.tenxiroRestoreRenewCanvasFooterContacts p {
    margin-bottom: 10px;
}

.tenxiroRestoreRenewCanvasFooterBottom {
    border-top: 1px solid #1A0033;
    padding-top: 30px;
    text-align: center;
}

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

.tenxiroRestoreRenewCanvasPolicyLinks a {
    color: #707070;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

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

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .tenxiroRestoreRenewCanvasHeroGrid, .tenxiroRestoreRenewCanvasBenefitsFlex {
        flex-direction: column;
    }
    .tenxiroRestoreRenewCanvasPriceGrid {
        flex-direction: column;
        align-items: center;
    }
    .tenxiroRestoreRenewCanvasPriceCard {
        width: 100%;
        max-width: 500px;
    }
    .tenxiroRestoreRenewCanvasPriceCardBest {
        transform: scale(1);
        margin: 20px 0;
    }
    .tenxiroRestoreRenewCanvasH1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .tenxiroRestoreRenewCanvasBurger {
        display: flex;
    }
    .tenxiroRestoreRenewCanvasNav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #0B0020;
        border-bottom: 1px solid #B98CFF;
    }
    .tenxiroRestoreRenewCanvasNavList {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    .tenxiroRestoreRenewCanvasMenuInput:checked ~ .tenxiroRestoreRenewCanvasNav {
        display: block;
    }
    .tenxiroRestoreRenewCanvasAudienceCard {
        flex: 1 1 100%;
    }
    .tenxiroRestoreRenewCanvasCheckList {
        grid-template-columns: 1fr;
    }
}