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

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

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

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

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

.CenterText {
    text-align: center;
}

/* Header */
.tenqanoMotionPulseScope_HeaderMain {
    background-color: rgba(10, 12, 16, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(207, 255, 53, 0.1);
}

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

.tenqanoMotionPulseScope_LogoText {
    font-size: 28px;
    font-weight: 800;
    color: #CFFF35;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tenqanoMotionPulseScope_NavMenu {
    display: block;
}

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

.tenqanoMotionPulseScope_NavLink {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.tenqanoMotionPulseScope_NavLink:hover {
    color: #CFFF35;
}

.tenqanoMotionPulseScope_HeaderPulseLine {
    height: 3px;
    background: #CFFF35;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 0 10px #CFFF35;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Burger Menu (No JS) */
.tenqanoMotionPulseScope_NavToggleInput {
    display: none;
}

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

.tenqanoMotionPulseScope_BurgerBtn span {
    width: 30px;
    height: 3px;
    background-color: #CFFF35;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .tenqanoMotionPulseScope_BurgerBtn {
        display: flex;
    }

    .tenqanoMotionPulseScope_NavMenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0A0C10;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }

    .tenqanoMotionPulseScope_NavList {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }

    .tenqanoMotionPulseScope_NavToggleInput:checked ~ .tenqanoMotionPulseScope_NavMenu {
        max-height: 500px;
    }
}

/* Titles */
.tenqanoMotionPulseScope_H1Title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #CFFF35;
}

.tenqanoMotionPulseScope_H2Title {
    font-size: 36px;
    margin-bottom: 40px;
    color: #CFFF35;
}

.tenqanoMotionPulseScope_H3Title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #CFFF35;
}

.tenqanoMotionPulseScope_SubTitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #CCCCCC;
}

.tenqanoMotionPulseScope_TxtP {
    margin-bottom: 20px;
    color: #EEEEEE;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Hero Section */
.tenqanoMotionPulseScope_HeroGrid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.tenqanoMotionPulseScope_HeroImageCol, .tenqanoMotionPulseScope_HeroContentCol {
    flex: 1;
    min-width: 320px;
}

.tenqanoMotionPulseScope_HeroImg {
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(207, 255, 53, 0.1);
}

.tenqanoMotionPulseScope_HeroTextBlock {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 2px solid #CFFF35;
}

/* Buttons */
.tenqanoMotionPulseScope_MainBtn {
    display: inline-block;
    background-color: #CFFF35;
    color: #0A0C10;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.tenqanoMotionPulseScope_MainBtn:hover {
    box-shadow: 0 0 20px #CFFF35;
    transform: translateY(-2px);
}

/* Reviews Slider */
.tenqanoMotionPulseScope_SliderWrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 50px;
}

.tenqanoMotionPulseScope_RadioInp {
    display: none;
}

.tenqanoMotionPulseScope_SlidesContainer {
    display: flex;
    transition: transform 0.6s ease;
    width: 300%;
}

.tenqanoMotionPulseScope_ReviewCard {
    width: 33.333%;
    padding: 40px;
    background: #14181F;
    border: 1px solid rgba(207, 255, 53, 0.2);
    border-radius: 15px;
    text-align: center;
}

.tenqanoMotionPulseScope_QuoteTxt {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

.tenqanoMotionPulseScope_AuthorName {
    display: block;
    font-weight: 700;
    color: #CFFF35;
}

#rev_1:checked ~ .tenqanoMotionPulseScope_SlidesContainer { transform: translateX(0%); }
#rev_2:checked ~ .tenqanoMotionPulseScope_SlidesContainer { transform: translateX(-33.333%); }
#rev_3:checked ~ .tenqanoMotionPulseScope_SlidesContainer { transform: translateX(-66.666%); }

.tenqanoMotionPulseScope_SliderDots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.tenqanoMotionPulseScope_Dot {
    width: 12px;
    height: 12px;
    border: 2px solid #CFFF35;
    border-radius: 50%;
    cursor: pointer;
}

#rev_1:checked ~ .tenqanoMotionPulseScope_SliderDots label[for="rev_1"],
#rev_2:checked ~ .tenqanoMotionPulseScope_SliderDots label[for="rev_2"],
#rev_3:checked ~ .tenqanoMotionPulseScope_SliderDots label[for="rev_3"] {
    background: #CFFF35;
}

/* Price Section */
.tenqanoMotionPulseScope_PriceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.tenqanoMotionPulseScope_PriceCard {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: #14181F;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.tenqanoMotionPulseScope_PriceCard.Featured {
    border: 2px solid #CFFF35;
    transform: scale(1.05);
    z-index: 2;
}

.tenqanoMotionPulseScope_Badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #CFFF35;
    color: #0A0C10;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 12px;
}

.tenqanoMotionPulseScope_CardHeader {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
}

.tenqanoMotionPulseScope_PriceVal {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    color: #CFFF35;
    margin-bottom: 25px;
}

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

.tenqanoMotionPulseScope_PriceList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.tenqanoMotionPulseScope_QuickLinks {
    display: flex;
    justify-content: space-between;
}

.tenqanoMotionPulseScope_QuickLinks a {
    font-size: 13px;
    color: #CFFF35;
    text-decoration: underline;
}

/* Benefit Section */
.tenqanoMotionPulseScope_BenefitFlex {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.tenqanoMotionPulseScope_BenefitTextCol, .tenqanoMotionPulseScope_BenefitImgCol {
    flex: 1;
    min-width: 320px;
}

.tenqanoMotionPulseScope_CheckList {
    list-style: none;
    margin-top: 20px;
}

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

.tenqanoMotionPulseScope_CheckList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #CFFF35;
    font-weight: 800;
}

/* For Whom Section */
.tenqanoMotionPulseScope_ForWhomGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.tenqanoMotionPulseScope_ForWhomItem {
    background: #14181F;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.tenqanoMotionPulseScope_LineDeco {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #CFFF35, transparent);
}

.tenqanoMotionPulseScope_Promo {
    display: inline-block;
    margin-top: 15px;
    color: #CFFF35;
    font-weight: 600;
    font-size: 13px;
    border: 1px dashed #CFFF35;
    padding: 3px 8px;
}

/* Additional Text Sections */
.tenqanoMotionPulseScope_TextSection {
    background-color: #0A0C10;
}

.tenqanoMotionPulseScope_TextSection.DarkerBG {
    background-color: #07090D;
}

.tenqanoMotionPulseScope_InfoBox {
    background: #1A1E26;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.tenqanoMotionPulseScope_NumberedList {
    margin-left: 20px;
    margin-top: 15px;
}

.tenqanoMotionPulseScope_NumberedList li {
    margin-bottom: 10px;
}

.tenqanoMotionPulseScope_GridThree {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.tenqanoMotionPulseScope_SmallCard {
    flex: 1;
    min-width: 250px;
    background: #14181F;
    padding: 20px;
    border: 1px solid rgba(207, 255, 53, 0.1);
}

.tenqanoMotionPulseScope_SmallCard h5 {
    color: #CFFF35;
    font-size: 18px;
    margin-bottom: 10px;
}

/* FAQ */
.tenqanoMotionPulseScope_FaqList {
    max-width: 900px;
    margin: 0 auto;
}

.tenqanoMotionPulseScope_FaqItem {
    margin-bottom: 15px;
    background: #14181F;
    border-radius: 5px;
}

.tenqanoMotionPulseScope_FaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    position: relative;
    color: #CFFF35;
}

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

.tenqanoMotionPulseScope_FaqContent {
    padding: 0 20px 20px 20px;
    color: #CCC;
}

/* Form Section */
.tenqanoMotionPulseScope_FormBox {
    max-width: 700px;
    margin: 0 auto;
    background: #14181F;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

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

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

.tenqanoMotionPulseScope_FormGroup label {
    font-weight: 600;
    font-size: 14px;
}

.tenqanoMotionPulseScope_InputInp, .tenqanoMotionPulseScope_TextareaInp {
    background: #0A0C10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    color: #FFF;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.tenqanoMotionPulseScope_InputInp:focus, .tenqanoMotionPulseScope_TextareaInp:focus {
    border-color: #CFFF35;
}

.tenqanoMotionPulseScope_CheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.tenqanoMotionPulseScope_CheckboxGroup a {
    color: #CFFF35;
    text-decoration: underline;
}

.tenqanoMotionPulseScope_SubmitBtn {
    background: #CFFF35;
    color: #0A0C10;
    border: none;
    padding: 15px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
}

/* Footer */
.tenqanoMotionPulseScope_Footer {
    padding: 60px 0 30px 0;
    background: #050608;
    border-top: 1px solid rgba(207, 255, 53, 0.1);
}

.tenqanoMotionPulseScope_FooterTop {
    margin-bottom: 40px;
    text-align: center;
}

.tenqanoMotionPulseScope_FooterBrand {
    font-size: 22px;
    font-weight: 800;
    color: #CFFF35;
    margin-bottom: 15px;
}

.tenqanoMotionPulseScope_FooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tenqanoMotionPulseScope_FooterLinks {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tenqanoMotionPulseScope_FooterLinks a {
    font-size: 13px;
    color: #888;
}

.tenqanoMotionPulseScope_FooterLinks a:hover {
    color: #CFFF35;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .tenqanoMotionPulseScope_H1Title { font-size: 32px; }
    .tenqanoMotionPulseScope_H2Title { font-size: 28px; }
    .tenqanoMotionPulseScope_PriceCard.Featured { transform: scale(1); }
    .tenqanoMotionPulseScope_FormBox { padding: 30px; }
}