/* GLOBAL STYLES - SmoothXinda System */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-void: #0B0020;
    --uv-violet: #B98CFF;
    --uv-glow: #D0B3FF;
    --text-light: #F0F0F0;
    --text-dim: #A0A0A0;
    --accent-dark: #1e0030;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body.SmoothXindaBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-void);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* HEADER */
.SmoothXindaHeader {
    background: rgba(11, 0, 32, 0.95);
    border-bottom: 2px solid var(--uv-violet);
    box-shadow: 0 2px 20px rgba(185, 140, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.SmoothXindaLogoText {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--uv-violet);
    text-transform: uppercase;
}

.SmoothXindaNavList {
    display: flex;
    list-style: none;
    gap: 30px;
}

.SmoothXindaNavLink {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    text-transform: uppercase;
}

.SmoothXindaNavLink:hover {
    color: var(--uv-violet);
    text-shadow: 0 0 8px var(--uv-violet);
}

/* MOBILE MENU */
.SmoothXindaMenuInput {
    display: none;
}

.SmoothXindaBurger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.SmoothXindaBurger span {
    width: 30px;
    height: 3px;
    background-color: var(--uv-violet);
    transition: var(--transition);
}

/* HERO SECTION */
.SmoothXindaHeroSection {
    padding: 60px 0 100px;
}

.SmoothXindaQuickLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    justify-content: center;
}

.SmoothXindaQuickBtn {
    background: transparent;
    border: 1px solid var(--uv-violet);
    color: var(--uv-violet);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.SmoothXindaQuickBtn:hover {
    background: var(--uv-violet);
    color: var(--bg-void);
    box-shadow: 0 0 15px var(--uv-violet);
}

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

.SmoothXindaHeroImageCol, .SmoothXindaHeroTextCol {
    flex: 1;
}

.SmoothXindaHeroImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--uv-violet);
    object-fit: cover;
}

.SmoothXindaMainTitle {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, var(--uv-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.SmoothXindaSubTitle {
    font-size: 20px;
    color: var(--uv-violet);
    margin-bottom: 25px;
    font-weight: 600;
}

.SmoothXindaTextDesc {
    margin-bottom: 20px;
    color: var(--text-dim);
    font-size: 17px;
}

.SmoothXindaMainBtn {
    display: inline-block;
    background: var(--uv-violet);
    color: #fff;
    padding: 16px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(185, 140, 255, 0.4);
}

.SmoothXindaMainBtn:hover {
    background: var(--uv-glow);
    box-shadow: 0 0 25px var(--uv-violet);
    transform: translateY(-2px);
}

/* REVIEWS SLIDER (CSS Only) */
.SmoothXindaReviews {
    padding: 100px 0;
    background: var(--accent-dark);
}

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

.SmoothXindaSlidesContainer {
    display: flex;
    transition: transform 0.5s ease;
}

.SmoothXindaReviewItem {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}

.SmoothXindaQuote {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.SmoothXindaReviewAuthor {
    font-weight: bold;
    color: var(--uv-violet);
    text-transform: uppercase;
}

.SmoothXindaRadioHide {
    display: none;
}

#Slide1:checked ~ .SmoothXindaSlidesContainer { transform: translateX(0); }
#Slide2:checked ~ .SmoothXindaSlidesContainer { transform: translateX(-100%); }
#Slide3:checked ~ .SmoothXindaSlidesContainer { transform: translateX(-200%); }

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

.SmoothXindaSliderDot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-dim);
    cursor: pointer;
}

#Slide1:checked ~ .SmoothXindaSliderNav label:nth-child(1),
#Slide2:checked ~ .SmoothXindaSliderNav label:nth-child(2),
#Slide3:checked ~ .SmoothXindaSliderNav label:nth-child(3) {
    background: var(--uv-violet);
    box-shadow: 0 0 10px var(--uv-violet);
}

/* TARGET GROUP */
.SmoothXindaTargetSec {
    padding: 100px 0;
}

.SmoothXindaTopImage {
    margin-bottom: 60px;
}

.SmoothXindaFullImg {
    width: 100%;
    border-radius: 15px;
    border: 1px solid var(--uv-violet);
}

.SmoothXindaSectionTitle {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.SmoothXindaIntroText {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 19px;
}

.SmoothXindaFeaturesList {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
}

.SmoothXindaFeatureCard {
    flex: 1 1 calc(33.333% - 30px);
    background: #150035;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--uv-violet);
    transition: var(--transition);
}

.SmoothXindaFeatureCard:hover {
    transform: translateY(-5px);
    background: #1c004a;
}

.SmoothXindaFeatureCard h3 {
    color: var(--uv-violet);
    margin-bottom: 15px;
}

/* BENEFITS */
.SmoothXindaBenefitsSec {
    padding: 100px 0;
    background: #080018;
}

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

.SmoothXindaBenefitsText {
    flex: 1.2;
}

.SmoothXindaBenefitsImg {
    flex: 0.8;
}

.SmoothXindaRoundedImg {
    width: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    border: 2px solid var(--uv-violet);
}

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

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

.SmoothXindaBenefitsList li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--uv-violet);
}

/* PRICING */
.SmoothXindaPricing {
    padding: 100px 0;
}

.SmoothXindaPriceGrid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.SmoothXindaPriceCard {
    flex: 1;
    background: #150035;
    border: 1px solid #330066;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.SmoothXindaPriceFeatured {
    border: 2px solid var(--uv-violet);
    transform: scale(1.05);
    background: #1a0040;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.15);
}

.SmoothXindaPriceHeader h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.SmoothXindaPriceValue {
    font-size: 42px;
    font-weight: 800;
    color: var(--uv-violet);
    margin-bottom: 30px;
}

.SmoothXindaPriceDetails {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.SmoothXindaPriceDetails li {
    padding: 10px 0;
    border-bottom: 1px solid #2a0055;
    font-size: 15px;
}

.SmoothXindaSecondaryBtn {
    display: block;
    border: 1px solid var(--uv-violet);
    color: var(--uv-violet);
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: var(--transition);
}

.SmoothXindaSecondaryBtn:hover {
    background: rgba(185, 140, 255, 0.1);
}

.SmoothXindaPriceQuick {
    text-align: center;
    margin-top: 50px;
}

.SmoothXindaPriceQuick a {
    color: var(--uv-violet);
}

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

.SmoothXindaAltBg {
    background: var(--accent-dark);
}

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

.SmoothXindaListInText li {
    margin-bottom: 10px;
    color: var(--uv-violet);
}

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

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

.SmoothXindaFaqItem {
    background: #150035;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 10px;
}

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

.SmoothXindaFaqItem summary::after {
    content: '+';
    color: var(--uv-violet);
    font-size: 24px;
}

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

.SmoothXindaFaqItem p {
    padding: 15px;
    color: var(--text-dim);
    border-top: 1px solid #2a0055;
}

/* FORM SECTION */
.SmoothXindaFormSec {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-void) 0%, #1e0030 100%);
}

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

.SmoothXindaFormTitle {
    text-align: center;
    margin-bottom: 10px;
}

.SmoothXindaFormSub {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.SmoothXindaInputGroup {
    margin-bottom: 20px;
}

.SmoothXindaInputGroup label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.SmoothXindaField, .SmoothXindaArea {
    width: 100%;
    background: #150035;
    border: 1px solid #330066;
    padding: 12px 15px;
    color: #fff;
    border-radius: 5px;
    outline: none;
}

.SmoothXindaField:focus, .SmoothXindaArea:focus {
    border-color: var(--uv-violet);
}

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

.SmoothXindaCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 13px;
}

.SmoothXindaCheckboxGroup a {
    color: var(--uv-violet);
}

.SmoothXindaSubmitBtn {
    width: 100%;
    padding: 15px;
    background: var(--uv-violet);
    border: none;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
}

.SmoothXindaSubmitBtn:hover {
    background: var(--uv-glow);
}

/* FOOTER */
.SmoothXindaFooter {
    padding: 80px 0 40px;
    border-top: 1px solid #330066;
    background: #050010;
}

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

.SmoothXindaFooterLogo {
    font-size: 24px;
    font-weight: 800;
    color: var(--uv-violet);
}

.SmoothXindaContactInfo p {
    color: var(--text-dim);
}

.SmoothXindaContactInfo a {
    color: var(--text-light);
    text-decoration: none;
}

.SmoothXindaFooterCopy {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 20px;
    font-size: 14px;
}

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

.SmoothXindaFooterLinks a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 12px;
}

.SmoothXindaFooterLinks a:hover {
    color: var(--uv-violet);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .SmoothXindaHeroGrid, .SmoothXindaBenefitsGrid {
        flex-direction: column;
    }
    .SmoothXindaHeroImageCol, .SmoothXindaBenefitsImg {
        order: -1;
    }
    .SmoothXindaPriceGrid {
        flex-direction: column;
    }
    .SmoothXindaPriceFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .SmoothXindaBurger {
        display: flex;
    }
    .SmoothXindaNav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-void);
        transition: 0.4s;
        z-index: 999;
    }
    .SmoothXindaNavList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .SmoothXindaMenuInput:checked ~ .SmoothXindaNav {
        left: 0;
    }
    .SmoothXindaMainTitle {
        font-size: 32px;
    }
    .SmoothXindaFeatureCard {
        flex: 1 1 100%;
    }
    .SmoothXindaFormCard {
        padding: 30px 20px;
    }
}