/* Reset & Basic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    color: #E6FBFF;
}

.telimunDailyPelvisFlowTitleH2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.telimunDailyPelvisFlowSubtitleH2 {
    font-size: 1.1rem;
    text-align: center;
    color: rgba(230, 251, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.telimunDailyPelvisFlowHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 13, 16, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(230, 251, 255, 0.1);
}

.telimunDailyPelvisFlowHeaderInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.telimunDailyPelvisFlowLogo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #E6FBFF;
    text-transform: uppercase;
}

.telimunDailyPelvisFlowNavList {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.telimunDailyPelvisFlowNavLink {
    text-decoration: none;
    color: rgba(230, 251, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.telimunDailyPelvisFlowNavLink:hover {
    color: #E6FBFF;
    text-shadow: 0 0 10px rgba(230, 251, 255, 0.5);
}

/* Burger */
.telimunDailyPelvisFlowMenuToggle {
    display: none;
}

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

.telimunDailyPelvisFlowBurger span {
    width: 25px;
    height: 2px;
    background: #E6FBFF;
    transition: 0.3s;
}

/* Hero Section */
.telimunDailyPelvisFlowHero {
    padding: 180px 2rem 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(230, 251, 255, 0.05) 0%, transparent 50%);
}

.telimunDailyPelvisFlowHeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.telimunDailyPelvisFlowHeroLeft, .telimunDailyPelvisFlowHeroRight {
    flex: 1;
    min-width: 300px;
}

.telimunDailyPelvisFlowHeroImgWrapper {
    position: relative;
}

.telimunDailyPelvisFlowHeroMainImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(230, 251, 255, 0.1);
}

.telimunDailyPelvisFlowHeroFloatingCard1, .telimunDailyPelvisFlowHeroFloatingCard2 {
    position: absolute;
    background: rgba(230, 251, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(230, 251, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: floating 4s ease-in-out infinite;
}

.telimunDailyPelvisFlowHeroFloatingCard1 {
    top: 10%;
    right: -20px;
}

.telimunDailyPelvisFlowHeroFloatingCard2 {
    bottom: 10%;
    left: -20px;
    animation-delay: 2s;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.telimunDailyPelvisFlowFloatingText {
    font-size: 1rem;
    font-weight: 600;
    color: #E6FBFF;
}

.telimunDailyPelvisFlowHeroTitle {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.telimunDailyPelvisFlowHeroSubtitle {
    font-size: 1.4rem;
    color: rgba(230, 251, 255, 0.9);
    margin-bottom: 2rem;
}

.telimunDailyPelvisFlowHeroDescription p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(230, 251, 255, 0.7);
}

.telimunDailyPelvisFlowHeroBtn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #E6FBFF;
    color: #0A0D10;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.telimunDailyPelvisFlowHeroBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(230, 251, 255, 0.4);
}

/* Reviews - Chat Style */
.telimunDailyPelvisFlowReviews {
    padding: 100px 2rem;
    background-color: #0d1116;
}

.telimunDailyPelvisFlowChatContainer {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.telimunDailyPelvisFlowChatMessage {
    display: flex;
    width: 100%;
}

.telimunDailyPelvisFlowChatLeft { justify-content: flex-start; }
.telimunDailyPelvisFlowChatRight { justify-content: flex-end; }

.telimunDailyPelvisFlowChatBubble {
    max-width: 80%;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.telimunDailyPelvisFlowChatLeft .telimunDailyPelvisFlowChatBubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(230, 251, 255, 0.1);
    border-bottom-left-radius: 4px;
}

.telimunDailyPelvisFlowChatRight .telimunDailyPelvisFlowChatBubble {
    background: rgba(230, 251, 255, 0.15);
    border: 1px solid rgba(230, 251, 255, 0.2);
    border-bottom-right-radius: 4px;
}

.telimunDailyPelvisFlowChatName {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #E6FBFF;
}

.telimunDailyPelvisFlowChatText {
    font-size: 1rem;
    color: rgba(230, 251, 255, 0.9);
}

.telimunDailyPelvisFlowChatTime {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.5;
}

/* Audience Section */
.telimunDailyPelvisFlowAudience {
    padding: 100px 2rem;
}

.telimunDailyPelvisFlowAudienceGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.telimunDailyPelvisFlowAudienceImgBox, .telimunDailyPelvisFlowAudienceContent {
    flex: 1;
    min-width: 300px;
}

.telimunDailyPelvisFlowAudienceImg {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(230, 251, 255, 0.1);
}

.telimunDailyPelvisFlowAudienceList {
    list-style: none;
    margin-bottom: 3rem;
}

.telimunDailyPelvisFlowAudienceItem {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.telimunDailyPelvisFlowAudienceItem::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E6FBFF;
}

.telimunDailyPelvisFlowServiceHighlight {
    background: rgba(230, 251, 255, 0.03);
    border: 1px solid rgba(230, 251, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
}

.telimunDailyPelvisFlowServiceTitle {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.telimunDailyPelvisFlowServiceRow {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(230, 251, 255, 0.1);
}

.telimunDailyPelvisFlowServiceName { font-weight: 500; }
.telimunDailyPelvisFlowServicePrice { color: #E6FBFF; font-weight: 700; }

/* Benefits */
.telimunDailyPelvisFlowBenefits {
    padding: 100px 2rem;
    background: #0A0D10;
}

.telimunDailyPelvisFlowBenefitsContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.telimunDailyPelvisFlowBenefitsText { flex: 1.2; }
.telimunDailyPelvisFlowBenefitsImgBox { flex: 0.8; }

.telimunDailyPelvisFlowTextLarge {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(230, 251, 255, 0.9);
}

.telimunDailyPelvisFlowBenefitsList {
    list-style: none;
}

.telimunDailyPelvisFlowBenefitsList li {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.telimunDailyPelvisFlowBenefitsList li strong {
    color: #E6FBFF;
    display: block;
    margin-bottom: 0.2rem;
}

.telimunDailyPelvisFlowBenefitsImg {
    width: 100%;
    border-radius: 20px;
}

/* Price Cards */
.telimunDailyPelvisFlowPrice {
    padding: 100px 2rem;
    background-color: #0d1116;
}

.telimunDailyPelvisFlowPriceGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.telimunDailyPelvisFlowPriceCard {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(230, 251, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.telimunDailyPelvisFlowPriceCard:hover {
    transform: translateY(-10px);
    border-color: rgba(230, 251, 255, 0.4);
}

.telimunDailyPelvisFlowPriceCardFeatured {
    background: rgba(230, 251, 255, 0.05);
    border: 2px solid #E6FBFF;
    transform: scale(1.05);
}

.telimunDailyPelvisFlowPriceBadge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #E6FBFF;
    color: #0A0D10;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.telimunDailyPelvisFlowPriceName {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.telimunDailyPelvisFlowPriceVal {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.telimunDailyPelvisFlowPriceFeatures {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.telimunDailyPelvisFlowPriceFeatures li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(230, 251, 255, 0.05);
    font-size: 0.95rem;
    color: rgba(230, 251, 255, 0.8);
}

.telimunDailyPelvisFlowPriceBtn {
    display: block;
    padding: 1rem;
    border: 1px solid #E6FBFF;
    color: #E6FBFF;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.3s;
}

.telimunDailyPelvisFlowPriceCardFeatured .telimunDailyPelvisFlowPriceBtn {
    background: #E6FBFF;
    color: #0A0D10;
}

.telimunDailyPelvisFlowPriceBtn:hover {
    background: #E6FBFF;
    color: #0A0D10;
    box-shadow: 0 0 15px rgba(230, 251, 255, 0.3);
}

/* Expert Word */
.telimunDailyPelvisFlowExpert {
    padding: 100px 2rem;
    background: #0A0D10;
    border-top: 1px solid rgba(230, 251, 255, 0.1);
}

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

.telimunDailyPelvisFlowExpertQuote {
    font-size: 1.8rem;
    font-style: italic;
    color: #E6FBFF;
    margin-bottom: 3rem;
    position: relative;
}

.telimunDailyPelvisFlowExpertQuote::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
}

.telimunDailyPelvisFlowExpertSignature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.telimunDailyPelvisFlowExpertAvatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #E6FBFF;
}

.telimunDailyPelvisFlowExpertInfo { text-align: left; }
.telimunDailyPelvisFlowExpertName { font-weight: 700; font-size: 1.2rem; }
.telimunDailyPelvisFlowExpertStatus { font-size: 0.9rem; opacity: 0.7; }

/* FAQ */
.telimunDailyPelvisFlowFaq {
    padding: 100px 2rem;
    background: #0d1116;
}

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

.telimunDailyPelvisFlowFaqItem {
    margin-bottom: 1rem;
    border: 1px solid rgba(230, 251, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.telimunDailyPelvisFlowFaqSummary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.telimunDailyPelvisFlowFaqSummary::after {
    content: '+';
    font-size: 1.5rem;
    transition: 0.3s;
}

details[open] .telimunDailyPelvisFlowFaqSummary::after {
    transform: rotate(45deg);
}

.telimunDailyPelvisFlowFaqAnswer {
    padding: 0 1.5rem 1.5rem;
    color: rgba(230, 251, 255, 0.7);
    line-height: 1.5;
}

/* Text Blocks */
.telimunDailyPelvisFlowTextBlock {
    padding: 100px 2rem;
}

.telimunDailyPelvisFlowBgAlt {
    background: rgba(230, 251, 255, 0.02);
}

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

.telimunDailyPelvisFlowTextContainer p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(230, 251, 255, 0.8);
}

.telimunDailyPelvisFlowBulletList, .telimunDailyPelvisFlowCheckList {
    list-style: none;
    margin: 2rem 0;
}

.telimunDailyPelvisFlowBulletList li, .telimunDailyPelvisFlowCheckList li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.telimunDailyPelvisFlowBulletList li::before {
    content: '•';
    color: #E6FBFF;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.telimunDailyPelvisFlowFeatureBox {
    background: rgba(230, 251, 255, 0.05);
    border-left: 4px solid #E6FBFF;
    padding: 2rem;
    margin-top: 3rem;
}

/* Contact Form */
.telimunDailyPelvisFlowContact {
    padding: 100px 2rem;
    background: #0A0D10;
}

.telimunDailyPelvisFlowContactContainer {
    max-width: 700px;
    margin: 0 auto;
}

.telimunDailyPelvisFlowForm {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 251, 255, 0.1);
}

.telimunDailyPelvisFlowFormGroup {
    margin-bottom: 1.5rem;
}

.telimunDailyPelvisFlowFormGroup label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(230, 251, 255, 0.6);
}

.telimunDailyPelvisFlowInput, .telimunDailyPelvisFlowTextarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(230, 251, 255, 0.2);
    border-radius: 5px;
    color: #E6FBFF;
    font-size: 1rem;
    outline: none;
}

.telimunDailyPelvisFlowInput:focus, .telimunDailyPelvisFlowTextarea:focus {
    border-color: #E6FBFF;
}

.telimunDailyPelvisFlowTextarea {
    height: 150px;
    resize: vertical;
}

.telimunDailyPelvisFlowFormCheckbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.telimunDailyPelvisFlowFormCheckbox label { font-size: 0.9rem; color: rgba(230, 251, 255, 0.7); }
.telimunDailyPelvisFlowFormCheckbox a { color: #E6FBFF; text-decoration: underline; }

.telimunDailyPelvisFlowSubmitBtn {
    width: 100%;
    padding: 1.2rem;
    background: #E6FBFF;
    color: #0A0D10;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.telimunDailyPelvisFlowSubmitBtn:hover {
    box-shadow: 0 0 20px rgba(230, 251, 255, 0.4);
}

/* Footer */
.telimunDailyPelvisFlowFooter {
    padding: 50px 2rem;
    background: #050709;
    border-top: 1px solid rgba(230, 251, 255, 0.05);
    text-align: center;
}

.telimunDailyPelvisFlowFooterInner {
    max-width: 1200px;
    margin: 0 auto;
}

.telimunDailyPelvisFlowCopy { margin-bottom: 1rem; opacity: 0.7; }
.telimunDailyPelvisFlowEmail { margin-bottom: 2rem; font-weight: 600; }
.telimunDailyPelvisFlowEmail a { color: #E6FBFF; text-decoration: none; }

.telimunDailyPelvisFlowFooterLinks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.telimunDailyPelvisFlowFooterLinks a {
    color: rgba(230, 251, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.telimunDailyPelvisFlowFooterLinks a:hover { color: #E6FBFF; }

/* Responsive */
@media (max-width: 992px) {
    .telimunDailyPelvisFlowHeroTitle { font-size: 2.5rem; }
    .telimunDailyPelvisFlowAudienceGrid, .telimunDailyPelvisFlowBenefitsContainer { flex-direction: column; }
}

@media (max-width: 768px) {
    .telimunDailyPelvisFlowBurger { display: flex; }
    .telimunDailyPelvisFlowNav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0A0D10;
        transition: 0.3s;
        padding: 2rem;
    }
    .telimunDailyPelvisFlowNavList { flex-direction: column; text-align: center; gap: 1.5rem; }
    .telimunDailyPelvisFlowMenuToggle:checked ~ .telimunDailyPelvisFlowNav { left: 0; }
    .telimunDailyPelvisFlowMenuToggle:checked ~ .telimunDailyPelvisFlowBurger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .telimunDailyPelvisFlowMenuToggle:checked ~ .telimunDailyPelvisFlowBurger span:nth-child(2) { opacity: 0; }
    .telimunDailyPelvisFlowMenuToggle:checked ~ .telimunDailyPelvisFlowBurger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    
    .telimunDailyPelvisFlowHeroFloatingCard1, .telimunDailyPelvisFlowHeroFloatingCard2 { display: none; }
    .telimunDailyPelvisFlowPriceCardFeatured { transform: scale(1); }
    .telimunDailyPelvisFlowForm { padding: 1.5rem; }
}