/* Variables */
:root {
    --veranovil-bg: #03070A;
    --veranovil-mint: #42FFD5;
    --veranovil-mint-glow: rgba(66, 255, 213, 0.3);
    --veranovil-text: #E0E0E0;
    --veranovil-text-dim: #A0A0A0;
    --veranovil-white: #FFFFFF;
    --veranovil-card-bg: #0A1117;
    --veranovil-border: #1B2B36;
    --veranovil-font: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --veranovil-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body.veranovilPelvicSoftHarbor_Body {
    background-color: var(--veranovil-bg);
    color: var(--veranovil-text);
    font-family: var(--veranovil-font);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--veranovil-transition);
}

/* Typography */
.veranovilPelvicSoftHarbor_H1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--veranovil-white);
}

.veranovilPelvicSoftHarbor_H2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--veranovil-white);
}

.veranovilPelvicSoftHarbor_H3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--veranovil-mint);
}

.veranovilPelvicSoftHarbor_Subtitle {
    font-size: 1.2rem;
    color: var(--veranovil-mint);
    margin-bottom: 30px;
    font-weight: 500;
}

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

.veranovilPelvicSoftHarbor_Center {
    text-align: center;
}

/* Header */
.veranovilPelvicSoftHarbor_Header {
    background-color: rgba(3, 7, 10, 0.95);
    border-bottom: 1px solid var(--veranovil-mint);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.veranovilPelvicSoftHarbor_Logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--veranovil-mint);
    letter-spacing: 1px;
}

.veranovilPelvicSoftHarbor_NavList {
    display: flex;
    gap: 25px;
}

.veranovilPelvicSoftHarbor_NavLink:hover {
    color: var(--veranovil-mint);
}

.veranovilPelvicSoftHarbor_NavToggle {
    display: none;
}

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

.veranovilPelvicSoftHarbor_Burger span {
    width: 25px;
    height: 3px;
    background-color: var(--veranovil-mint);
    border-radius: 2px;
}

/* Hero */
.veranovilPelvicSoftHarbor_Hero {
    padding: 80px 0;
}

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

.veranovilPelvicSoftHarbor_HeroImage {
    flex: 1;
}

.veranovilPelvicSoftHarbor_MainImg {
    border-radius: 20px;
    box-shadow: 0 0 30px var(--veranovil-mint-glow);
}

.veranovilPelvicSoftHarbor_HeroContent {
    flex: 1.2;
}

.veranovilPelvicSoftHarbor_HeroTextItem {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 2px solid var(--veranovil-mint);
}

/* Buttons */
.veranovilPelvicSoftHarbor_Btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.veranovilPelvicSoftHarbor_BtnPrimary {
    background-color: var(--veranovil-mint);
    color: var(--veranovil-bg);
}

.veranovilPelvicSoftHarbor_BtnPrimary:hover {
    box-shadow: 0 0 20px var(--veranovil-mint);
    transform: translateY(-2px);
}

.veranovilPelvicSoftHarbor_BtnOutline {
    border-color: var(--veranovil-mint);
    color: var(--veranovil-mint);
}

.veranovilPelvicSoftHarbor_BtnOutline:hover {
    background-color: var(--veranovil-mint);
    color: var(--veranovil-bg);
}

.veranovilPelvicSoftHarbor_FullWidth {
    width: 100%;
}

/* Reviews Slider */
.veranovilPelvicSoftHarbor_Reviews {
    padding: 100px 0;
    background-color: var(--veranovil-card-bg);
}

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

.veranovilPelvicSoftHarbor_RadioHide {
    display: none;
}

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

.veranovilPelvicSoftHarbor_SlideItem {
    min-width: 100%;
    padding: 20px;
}

.veranovilPelvicSoftHarbor_ReviewCard {
    background: var(--veranovil-bg);
    border: 1px solid var(--veranovil-mint);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.veranovilPelvicSoftHarbor_ReviewText {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.veranovilPelvicSoftHarbor_ReviewAuthor {
    color: var(--veranovil-mint);
    font-weight: 700;
}

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

.veranovilPelvicSoftHarbor_Dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--veranovil-mint);
    border-radius: 50%;
    cursor: pointer;
}

#rev_1:checked ~ .veranovilPelvicSoftHarbor_Slides { transform: translateX(0); }
#rev_2:checked ~ .veranovilPelvicSoftHarbor_Slides { transform: translateX(-100%); }
#rev_3:checked ~ .veranovilPelvicSoftHarbor_Slides { transform: translateX(-200%); }

#rev_1:checked ~ .veranovilPelvicSoftHarbor_SliderDots label:nth-child(1),
#rev_2:checked ~ .veranovilPelvicSoftHarbor_SliderDots label:nth-child(2),
#rev_3:checked ~ .veranovilPelvicSoftHarbor_SliderDots label:nth-child(3) {
    background-color: var(--veranovil-mint);
}

/* Pricing */
.veranovilPelvicSoftHarbor_Pricing {
    padding: 100px 0;
}

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

.veranovilPelvicSoftHarbor_PriceCard {
    flex: 1 1 300px;
    max-width: 350px;
    background: var(--veranovil-card-bg);
    border: 1px solid var(--veranovil-border);
    padding: 40px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: var(--veranovil-transition);
}

.veranovilPelvicSoftHarbor_PriceCard:hover {
    border-color: var(--veranovil-mint);
    transform: translateY(-10px);
}

.veranovilPelvicSoftHarbor_Featured {
    border: 2px solid var(--veranovil-mint);
    transform: scale(1.05);
}

.veranovilPelvicSoftHarbor_PriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--veranovil-white);
    margin: 20px 0;
}

.veranovilPelvicSoftHarbor_PriceList {
    margin-bottom: 30px;
    flex-grow: 1;
}

.veranovilPelvicSoftHarbor_PriceList li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.veranovilPelvicSoftHarbor_PriceList li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--veranovil-mint);
}

/* Target Section */
.veranovilPelvicSoftHarbor_Target {
    padding: 100px 0;
    background-color: var(--veranovil-bg);
}

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

.veranovilPelvicSoftHarbor_TargetInfo {
    flex: 1;
}

.veranovilPelvicSoftHarbor_TargetProduct {
    flex: 1;
    text-align: center;
}

.veranovilPelvicSoftHarbor_ProdImg {
    border-radius: 50%;
    margin: 0 auto 30px;
    border: 3px solid var(--veranovil-mint);
    padding: 10px;
}

.veranovilPelvicSoftHarbor_ProdTag {
    font-size: 1.5rem;
    color: var(--veranovil-mint);
    font-weight: 700;
    margin-bottom: 15px;
}

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

.veranovilPelvicSoftHarbor_CustomList li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--veranovil-mint);
    font-weight: bold;
}

/* Benefits */
.veranovilPelvicSoftHarbor_Benefits {
    padding: 100px 0;
    background-color: var(--veranovil-card-bg);
}

.veranovilPelvicSoftHarbor_FlexReverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 60px;
}

.veranovilPelvicSoftHarbor_BenefitsText {
    flex: 1.2;
}

.veranovilPelvicSoftHarbor_BenefitsImg {
    flex: 0.8;
}

.veranovilPelvicSoftHarbor_SideImg {
    border-radius: 20px;
}

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

.veranovilPelvicSoftHarbor_BenefitGrid li {
    flex: 1 1 250px;
}

.veranovilPelvicSoftHarbor_BenefitGrid strong {
    display: block;
    color: var(--veranovil-mint);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Expert Section */
.veranovilPelvicSoftHarbor_Expert {
    padding: 120px 0;
}

.veranovilPelvicSoftHarbor_QuoteBox {
    border-left: 4px solid var(--veranovil-mint);
    padding: 40px;
    background: rgba(66, 255, 213, 0.05);
    border-radius: 0 20px 20px 0;
}

.veranovilPelvicSoftHarbor_Quote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--veranovil-white);
    margin-bottom: 20px;
}

.veranovilPelvicSoftHarbor_Cite {
    font-size: 1.2rem;
    color: var(--veranovil-mint);
    display: block;
    text-align: right;
}

/* Text Sections */
.veranovilPelvicSoftHarbor_TextSection {
    padding: 100px 0;
}

.veranovilPelvicSoftHarbor_BgAlt {
    background-color: var(--veranovil-card-bg);
}

.veranovilPelvicSoftHarbor_TextSection p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

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

.veranovilPelvicSoftHarbor_FaqItem {
    margin-bottom: 15px;
    border: 1px solid var(--veranovil-border);
    border-radius: 10px;
    background: var(--veranovil-card-bg);
}

.veranovilPelvicSoftHarbor_FaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--veranovil-white);
    outline: none;
}

.veranovilPelvicSoftHarbor_FaqSummary::-webkit-details-marker {
    color: var(--veranovil-mint);
}

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

/* Contact Form */
.veranovilPelvicSoftHarbor_Contact {
    padding: 100px 0;
    background: var(--veranovil-bg);
}

.veranovilPelvicSoftHarbor_FormBox {
    max-width: 600px;
    margin: 0 auto;
    background: var(--veranovil-card-bg);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--veranovil-mint);
}

.veranovilPelvicSoftHarbor_Form {
    margin-top: 40px;
}

.veranovilPelvicSoftHarbor_InputGroup {
    margin-bottom: 25px;
}

.veranovilPelvicSoftHarbor_InputGroup label {
    display: block;
    margin-bottom: 8px;
    color: var(--veranovil-mint);
}

.veranovilPelvicSoftHarbor_Input, 
.veranovilPelvicSoftHarbor_Textarea {
    width: 100%;
    padding: 12px 20px;
    background: var(--veranovil-bg);
    border: 1px solid var(--veranovil-border);
    border-radius: 8px;
    color: var(--veranovil-white);
    font-family: inherit;
    transition: var(--veranovil-transition);
}

.veranovilPelvicSoftHarbor_Input:focus, 
.veranovilPelvicSoftHarbor_Textarea:focus {
    outline: none;
    border-color: var(--veranovil-mint);
}

.veranovilPelvicSoftHarbor_CheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.veranovilPelvicSoftHarbor_CheckboxGroup a {
    color: var(--veranovil-mint);
    text-decoration: underline;
}

/* Footer */
.veranovilPelvicSoftHarbor_Footer {
    padding: 80px 0 30px;
    background-color: #010204;
    border-top: 1px solid var(--veranovil-border);
}

.veranovilPelvicSoftHarbor_FooterTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.veranovilPelvicSoftHarbor_FooterLogo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--veranovil-mint);
}

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

.veranovilPelvicSoftHarbor_FooterContacts a:hover {
    color: var(--veranovil-mint);
}

.veranovilPelvicSoftHarbor_FooterBottom {
    padding-top: 30px;
    border-top: 1px solid var(--veranovil-border);
    text-align: center;
}

.veranovilPelvicSoftHarbor_FooterLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--veranovil-text-dim);
}

/* Responsive */
@media (max-width: 992px) {
    .veranovilPelvicSoftHarbor_HeroWrapper,
    .veranovilPelvicSoftHarbor_TargetGrid,
    .veranovilPelvicSoftHarbor_FlexReverse {
        flex-direction: column;
        text-align: center;
    }

    .veranovilPelvicSoftHarbor_HeroContent,
    .veranovilPelvicSoftHarbor_TargetInfo,
    .veranovilPelvicSoftHarbor_BenefitsText {
        order: 2;
    }

    .veranovilPelvicSoftHarbor_HeroImage,
    .veranovilPelvicSoftHarbor_TargetProduct,
    .veranovilPelvicSoftHarbor_BenefitsImg {
        order: 1;
        width: 100%;
    }

    .veranovilPelvicSoftHarbor_CustomList {
        text-align: left;
        max-width: 600px;
        margin: 0 auto;
    }

    .veranovilPelvicSoftHarbor_HeroTextItem {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .veranovilPelvicSoftHarbor_Nav {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: var(--veranovil-bg);
        transition: 0.4s;
        z-index: 999;
    }

    .veranovilPelvicSoftHarbor_NavList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }

    .veranovilPelvicSoftHarbor_Burger {
        display: flex;
    }

    #veranovilPelvicSoftHarbor_NavToggle:checked ~ .veranovilPelvicSoftHarbor_Nav {
        left: 0;
    }

    #veranovilPelvicSoftHarbor_NavToggle:checked ~ .veranovilPelvicSoftHarbor_Burger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    #veranovilPelvicSoftHarbor_NavToggle:checked ~ .veranovilPelvicSoftHarbor_Burger span:nth-child(2) {
        opacity: 0;
    }

    #veranovilPelvicSoftHarbor_NavToggle:checked ~ .veranovilPelvicSoftHarbor_Burger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .veranovilPelvicSoftHarbor_FooterTop {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .veranovilPelvicSoftHarbor_FooterContacts {
        width: 100%;
    }

    .veranovilPelvicSoftHarbor_PriceCard {
        max-width: 100%;
    }

    .veranovilPelvicSoftHarbor_FormBox {
        padding: 30px 20px;
    }
}