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

:root {
    --bg-color: #050607;
    --accent-neon: #5AF3FF;
    --text-white: #ffffff;
    --text-dim: #a0a0a0;
    --card-bg: #0d0f11;
    --neon-glow: 0 0 10px rgba(90, 243, 255, 0.4), 0 0 20px rgba(90, 243, 255, 0.2);
    --neon-glow-strong: 0 0 15px rgba(90, 243, 255, 0.7), 0 0 30px rgba(90, 243, 255, 0.4);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body.teliqarSoftFemAnchorBody {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* TYPOGRAPHY */
.teliqarSoftFemAnchorH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.teliqarSoftFemAnchorH2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.teliqarSoftFemAnchorH2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-neon);
    box-shadow: var(--neon-glow);
}

.teliqarSoftFemAnchorH3Neon {
    font-size: 1.3rem;
    color: var(--accent-neon);
    margin-bottom: 10px;
    text-shadow: var(--neon-glow);
}

.teliqarSoftFemAnchorH4Neon {
    font-size: 1.1rem;
    color: var(--accent-neon);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.teliqarSoftFemAnchorP {
    margin-bottom: 20px;
    color: var(--text-dim);
}

.teliqarSoftFemAnchorSub {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 30px;
}

/* BUTTONS */
.teliqarSoftFemAnchorBtnPrimary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-neon);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.teliqarSoftFemAnchorBtnPrimary:hover {
    box-shadow: var(--neon-glow-strong);
    filter: blur(0.2px);
    transform: translateY(-2px);
}

.teliqarSoftFemAnchorBtnSecondary {
    display: inline-block;
    padding: 13px 35px;
    background-color: transparent;
    color: var(--accent-neon);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid var(--accent-neon);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.teliqarSoftFemAnchorBtnSecondary:hover {
    background-color: rgba(90, 243, 255, 0.1);
    box-shadow: var(--neon-glow);
}

.teliqarSoftFemAnchorBtnFull {
    width: 100%;
    margin-top: 10px;
}

/* HEADER */
.teliqarSoftFemAnchorHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(5, 6, 7, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--accent-neon);
    padding: 15px 0;
}

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

.teliqarSoftFemAnchorLogo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-neon);
    text-shadow: var(--neon-glow);
    text-transform: uppercase;
}

.teliqarSoftFemAnchorNavList {
    display: flex;
    list-style: none;
    gap: 20px;
}

.teliqarSoftFemAnchorNavLink {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    padding: 5px 10px;
}

.teliqarSoftFemAnchorNavLink:hover {
    color: var(--accent-neon);
    text-shadow: var(--neon-glow);
}

.teliqarSoftFemAnchorMenuCheckbox,
.teliqarSoftFemAnchorBurger {
    display: none;
}

/* HERO SECTION */
.teliqarSoftFemAnchorHero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(90, 243, 255, 0.05), transparent);
}

.teliqarSoftFemAnchorCyberGrid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(90, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.teliqarSoftFemAnchorHeroFlex {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.teliqarSoftFemAnchorHeroImageWrap {
    flex: 1;
    border: 1px solid rgba(90, 243, 255, 0.3);
    padding: 10px;
    box-shadow: var(--neon-glow);
}

.teliqarSoftFemAnchorImgHero {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.teliqarSoftFemAnchorHeroContent {
    flex: 1.2;
}

.teliqarSoftFemAnchorHeroTextBlocks {
    margin: 40px 0;
}

.teliqarSoftFemAnchorTextBlock {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 2px solid var(--accent-neon);
}

/* REVIEWS SLIDER */
.teliqarSoftFemAnchorReviews {
    padding: 100px 0;
    background-color: var(--card-bg);
    border-top: 1px solid rgba(90, 243, 255, 0.2);
    border-bottom: 1px solid rgba(90, 243, 255, 0.2);
}

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

.teliqarSoftFemAnchorSliderWrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

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

.teliqarSoftFemAnchorQuote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 20px;
    position: relative;
}

.teliqarSoftFemAnchorCite {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--accent-neon);
    margin-top: 20px;
    font-style: normal;
}

.teliqarSoftFemAnchorSliderRadio {
    display: none;
}

#teliqarSlide1:checked ~ .teliqarSoftFemAnchorSliderWrapper { transform: translateX(0); }
#teliqarSlide2:checked ~ .teliqarSoftFemAnchorSliderWrapper { transform: translateX(-100%); }

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

.teliqarSoftFemAnchorControlBtn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent-neon);
    color: var(--accent-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.teliqarSoftFemAnchorControlBtn:hover {
    background-color: var(--accent-neon);
    color: #000;
    box-shadow: var(--neon-glow);
}

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

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

.teliqarSoftFemAnchorPriceCard {
    flex: 1;
    background-color: #0a0c0e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.teliqarSoftFemAnchorPriceCard:hover {
    border-color: var(--accent-neon);
    transform: translateY(-10px);
    box-shadow: var(--neon-glow);
}

.teliqarSoftFemAnchorPriceCardFeatured {
    border: 1px solid var(--accent-neon);
    background-color: #0d1216;
    transform: scale(1.05);
    box-shadow: var(--neon-glow);
}

.teliqarSoftFemAnchorPriceTitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.teliqarSoftFemAnchorPriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-neon);
    margin-bottom: 30px;
}

.teliqarSoftFemAnchorPriceList {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.teliqarSoftFemAnchorPriceList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 0.95rem;
}

.teliqarSoftFemAnchorPriceList li::before {
    content: '▶';
    color: var(--accent-neon);
    font-size: 0.7rem;
    margin-right: 10px;
}

.teliqarSoftFemAnchorQuickLinks {
    margin-top: 60px;
    text-align: center;
    color: var(--text-dim);
}

.teliqarSoftFemAnchorQuickLinks a {
    color: var(--accent-neon);
    text-decoration: none;
    margin: 0 5px;
}

/* BENEFITS */
.teliqarSoftFemAnchorBenefits {
    padding: 100px 0;
    background: linear-gradient(to right, #050607, #0a0d0f);
}

.teliqarSoftFemAnchorBenefitsFlex {
    display: flex;
    gap: 80px;
    align-items: center;
}

.teliqarSoftFemAnchorBenefitsContent, .teliqarSoftFemAnchorBenefitsImage {
    flex: 1;
}

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

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

.teliqarSoftFemAnchorBenefitItem::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    background-color: var(--accent-neon);
    box-shadow: var(--neon-glow);
    border-radius: 50%;
}

.teliqarSoftFemAnchorImgRounded {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--neon-glow);
    border: 1px solid var(--accent-neon);
}

/* FOR WHOM */
.teliqarSoftFemAnchorForWhom {
    padding: 100px 0;
}

.teliqarSoftFemAnchorImgFull {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 50px;
    border: 1px solid rgba(90, 243, 255, 0.3);
}

.teliqarSoftFemAnchorForWhomGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.teliqarSoftFemAnchorForWhomCard {
    background: #0d0f11;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.teliqarSoftFemAnchorNumber {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(90, 243, 255, 0.1);
    position: absolute;
    top: 10px;
    right: 15px;
}

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

.teliqarSoftFemAnchorFaqWrapper {
    max-width: 900px;
    margin: 40px auto 0;
}

.teliqarSoftFemAnchorFaqItem {
    margin-bottom: 15px;
    background-color: #0d0f11;
    border-bottom: 1px solid rgba(90, 243, 255, 0.2);
}

.teliqarSoftFemAnchorFaqTitle {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-white);
    list-style: none;
    position: relative;
    font-size: 1.1rem;
}

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

.teliqarSoftFemAnchorFaqTitle::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: var(--accent-neon);
}

.teliqarSoftFemAnchorFaqItem[open] .teliqarSoftFemAnchorFaqTitle::after {
    content: '-';
}

.teliqarSoftFemAnchorFaqContent {
    padding: 0 20px 20px;
    color: var(--text-dim);
}

/* TEXT SECTIONS */
.teliqarSoftFemAnchorTextSection {
    padding: 100px 0;
}

.teliqarSoftFemAnchorSectionAlt {
    background-color: #080a0c;
}

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

.teliqarSoftFemAnchorInfoList li::before {
    content: '→';
    color: var(--accent-neon);
    margin-right: 15px;
}

.teliqarSoftFemAnchorInfoBox {
    background: rgba(90, 243, 255, 0.05);
    border: 1px dashed var(--accent-neon);
    padding: 30px;
    margin: 30px 0;
}

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

.teliqarSoftFemAnchorTextCol {
    flex: 1;
}

.teliqarSoftFemAnchorSimpleList {
    list-style: square;
    padding-left: 20px;
    color: var(--text-dim);
}

/* CONTACT FORM */
.teliqarSoftFemAnchorContact {
    padding: 100px 0;
    background: radial-gradient(circle at bottom left, rgba(90, 243, 255, 0.05), transparent);
}

.teliqarSoftFemAnchorContactBox {
    max-width: 600px;
    margin: 0 auto;
    background-color: #0d0f11;
    padding: 50px;
    border: 1px solid var(--accent-neon);
    box-shadow: var(--neon-glow);
}

.teliqarSoftFemAnchorFormGroup {
    margin-bottom: 20px;
}

.teliqarSoftFemAnchorLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--accent-neon);
}

.teliqarSoftFemAnchorInput, .teliqarSoftFemAnchorTextarea {
    width: 100%;
    background-color: #050607;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: white;
    outline: none;
    transition: var(--transition);
}

.teliqarSoftFemAnchorInput:focus, .teliqarSoftFemAnchorTextarea:focus {
    border-color: var(--accent-neon);
    box-shadow: 0 0 5px rgba(90, 243, 255, 0.3);
}

.teliqarSoftFemAnchorTextarea {
    height: 120px;
    resize: none;
}

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

.teliqarSoftFemAnchorCheckboxLabel {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.teliqarSoftFemAnchorCheckboxLabel a {
    color: var(--accent-neon);
}

/* FOOTER */
.teliqarSoftFemAnchorFooter {
    padding: 80px 0 40px;
    background-color: #020304;
    border-top: 1px solid rgba(90, 243, 255, 0.2);
}

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

.teliqarSoftFemAnchorFooterBrand {
    max-width: 350px;
}

.teliqarSoftFemAnchorFooterBrand p {
    margin-top: 20px;
    color: var(--text-dim);
}

.teliqarSoftFemAnchorFooterInfo p {
    margin-bottom: 10px;
    color: var(--text-dim);
}

.teliqarSoftFemAnchorFooterInfo a {
    color: var(--text-white);
    text-decoration: none;
}

.teliqarSoftFemAnchorFooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.teliqarSoftFemAnchorFooterNav {
    display: flex;
    gap: 20px;
}

.teliqarSoftFemAnchorFooterNav a {
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition);
}

.teliqarSoftFemAnchorFooterNav a:hover {
    color: var(--accent-neon);
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .teliqarSoftFemAnchorH1 { font-size: 2.8rem; }
    .teliqarSoftFemAnchorHeroFlex, .teliqarSoftFemAnchorBenefitsFlex {
        flex-direction: column;
        gap: 40px;
    }
    .teliqarSoftFemAnchorPriceGrid {
        flex-direction: column;
    }
    .teliqarSoftFemAnchorPriceCardFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .teliqarSoftFemAnchorH1 { font-size: 2.2rem; }
    
    .teliqarSoftFemAnchorBurger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .teliqarSoftFemAnchorBurger span {
        width: 30px;
        height: 2px;
        background-color: var(--accent-neon);
        transition: var(--transition);
    }
    
    .teliqarSoftFemAnchorNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #050607;
        padding: 100px 40px;
        transition: 0.4s ease;
        border-left: 1px solid var(--accent-neon);
    }
    
    .teliqarSoftFemAnchorNavList {
        flex-direction: column;
        gap: 30px;
    }
    
    .teliqarSoftFemAnchorMenuCheckbox:checked ~ .teliqarSoftFemAnchorNav {
        right: 0;
    }
    
    .teliqarSoftFemAnchorMenuCheckbox:checked ~ .teliqarSoftFemAnchorBurger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .teliqarSoftFemAnchorMenuCheckbox:checked ~ .teliqarSoftFemAnchorBurger span:nth-child(2) {
        opacity: 0;
    }
    .teliqarSoftFemAnchorMenuCheckbox:checked ~ .teliqarSoftFemAnchorBurger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .teliqarSoftFemAnchorTextGrid {
        flex-direction: column;
    }
    
    .teliqarSoftFemAnchorFooterBottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .teliqarSoftFemAnchorFooterNav {
        flex-wrap: wrap;
        justify-content: center;
    }
}