/* RESET AND BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* HEADER */
.sanosCardioLife_HeaderWrapper {
    position: sticky;
    top: 0;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 1000;
}

.sanosCardioLife_HeaderInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.sanosCardioLife_NavLink {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.sanosCardioLife_NavLink:hover {
    color: #22d3ee;
}

.sanosCardioLife_NeonDivider {
    height: 1px;
    background-color: #22d3ee;
    box-shadow: 0 0 10px #22d3ee, 0 0 20px #22d3ee;
    width: 100%;
}

.sanosCardioLife_MenuCheckbox {
    display: none;
}

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

.sanosCardioLife_BurgerLabel span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #22d3ee;
    transition: 0.3s;
}

/* HERO SECTION */
.sanosCardioLife_HeroSection {
    padding: 80px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.sanosCardioLife_HeroImageWrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.sanosCardioLife_HeroImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: block;
}

.sanosCardioLife_HeroBadge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #22d3ee;
    color: #0f172a;
    padding: 8px 16px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.6);
}

.sanosCardioLife_HeroTextContent {
    flex: 1.2;
    min-width: 300px;
}

.sanosCardioLife_HeroTitle {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 800;
}

.sanosCardioLife_HeroSub {
    font-size: 20px;
    color: #22d3ee;
    margin-bottom: 20px;
    font-weight: 600;
}

.sanosCardioLife_HeroDescription {
    margin-bottom: 20px;
    font-size: 17px;
    color: #cbd5e1;
}

.sanosCardioLife_HeroCTA {
    display: inline-block;
    background-color: #22d3ee;
    color: #0f172a;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
}

.sanosCardioLife_HeroCTA:hover {
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.7);
    transform: translateY(-2px);
}

/* SECTION COMMON STYLES */
.sanosCardioLife_SectionHeader {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.sanosCardioLife_SectionTitle {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}

.sanosCardioLife_SectionSubtitle {
    font-size: 18px;
    color: #a7f3d0;
}

/* PACKAGES SECTION */
.sanosCardioLife_PackagesSection {
    padding: 100px 20px;
    background-color: #1e293b;
}

.sanosCardioLife_PackagesGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.sanosCardioLife_PackageCard {
    background-color: #0f172a;
    border: 1px solid #334155;
    padding: 40px;
    border-radius: 15px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.sanosCardioLife_PackageCard:hover {
    transform: translateY(-10px);
    border-color: #22d3ee;
}

.sanosCardioLife_PackageCardFeatured {
    border: 2px solid #22d3ee;
    position: relative;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.1);
}

.sanosCardioLife_PackageName {
    font-size: 24px;
    margin-bottom: 15px;
    color: #22d3ee;
}

.sanosCardioLife_PackagePrice {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

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

.sanosCardioLife_PackageFeatures li {
    padding: 10px 0;
    border-bottom: 1px solid #1e293b;
    font-size: 15px;
    color: #cbd5e1;
}

.sanosCardioLife_PackageBtn {
    text-align: center;
    background-color: transparent;
    border: 2px solid #22d3ee;
    color: #22d3ee;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.sanosCardioLife_PackageBtn:hover {
    background-color: #22d3ee;
    color: #0f172a;
    box-shadow: 0 0 15px #22d3ee;
}

/* PRACTICE SECTION */
.sanosCardioLife_PracticeSection {
    padding: 100px 20px;
}

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

.sanosCardioLife_PracticeContent {
    flex: 1;
    min-width: 320px;
}

.sanosCardioLife_PracticeImage {
    flex: 1;
    min-width: 320px;
}

.sanosCardioLife_BenefitImg {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.sanosCardioLife_PracticeIntro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #a7f3d0;
}

.sanosCardioLife_BenefitsList {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.sanosCardioLife_BenefitIcon {
    font-size: 24px;
    color: #22d3ee;
    line-height: 1;
}

.sanosCardioLife_BenefitTitle {
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
}

.sanosCardioLife_BenefitText {
    color: #cbd5e1;
}

/* AUDIENCE SECTION */
.sanosCardioLife_AudienceSection {
    padding: 100px 20px;
    background-color: #0f172a;
}

.sanosCardioLife_AudienceGrid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.sanosCardioLife_AudienceItem {
    width: calc(33.333% - 30px);
    min-width: 280px;
    background: #1e293b;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.sanosCardioLife_AudienceItem:hover {
    transform: scale(1.05);
}

.sanosCardioLife_AudienceIcon {
    font-size: 40px;
    margin-bottom: 20px;
}

.sanosCardioLife_AudienceText {
    font-size: 16px;
    color: #e2e8f0;
}

/* EXTRA TEXT SECTIONS */
.sanosCardioLife_ExtraSection {
    padding: 80px 20px;
}

.sanosCardioLife_ExtraAlt {
    background-color: #1e293b;
}

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

.sanosCardioLife_ExtraTitle {
    font-size: 32px;
    margin-bottom: 30px;
    color: #22d3ee;
    text-align: center;
}

.sanosCardioLife_ExtraP {
    margin-bottom: 20px;
    font-size: 18px;
    color: #cbd5e1;
}

.sanosCardioLife_Highlight {
    color: #a7f3d0;
    font-weight: 700;
}

.sanosCardioLife_ExtraList {
    margin-top: 20px;
    padding-left: 20px;
    list-style: square;
    color: #22d3ee;
}

.sanosCardioLife_ExtraList li {
    margin-bottom: 10px;
    color: #cbd5e1;
}

/* EXPERT SECTION */
.sanosCardioLife_ExpertSection {
    padding: 100px 20px;
}

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

.sanosCardioLife_ExpertTextSide {
    flex: 1.5;
    min-width: 320px;
}

.sanosCardioLife_ExpertImageSide {
    flex: 1;
    min-width: 300px;
}

.sanosCardioLife_QuoteLine {
    width: 60px;
    height: 4px;
    background-color: #22d3ee;
    margin-bottom: 30px;
}

.sanosCardioLife_ExpertQuote {
    font-size: 26px;
    font-style: italic;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.4;
}

.sanosCardioLife_ExpertName {
    font-size: 24px;
    font-weight: 800;
    color: #22d3ee;
    margin-bottom: 10px;
}

.sanosCardioLife_ExpertBio {
    font-size: 16px;
    color: #94a3b8;
}

.sanosCardioLife_ExpertImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 #22d3ee;
}

/* FAQ SECTION */
.sanosCardioLife_FAQSection {
    padding: 100px 20px;
    background-color: #1e293b;
}

.sanosCardioLife_FAQGrid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sanosCardioLife_FAQItem {
    background-color: #0f172a;
    border-radius: 10px;
    overflow: hidden;
}

.sanosCardioLife_FAQSummary {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    border-left: 5px solid #22d3ee;
}

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

.sanosCardioLife_FAQAnswer {
    padding: 0 20px 20px 25px;
    color: #cbd5e1;
    font-size: 16px;
}

/* FORM SECTION */
.sanosCardioLife_FormSection {
    padding: 100px 20px;
}

.sanosCardioLife_FormContainer {
    max-width: 700px;
    margin: 0 auto;
    background: #1e293b;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.sanosCardioLife_FormElement {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

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

.sanosCardioLife_FormLabel {
    font-size: 14px;
    color: #22d3ee;
    font-weight: 600;
}

.sanosCardioLife_FormInput, .sanosCardioLife_FormTextarea {
    padding: 15px;
    background: #0f172a;
    border: 1px solid #334155;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
}

.sanosCardioLife_FormInput:focus, .sanosCardioLife_FormTextarea:focus {
    border-color: #22d3ee;
    outline: none;
}

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

.sanosCardioLife_FormGroupCheckbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.sanosCardioLife_FormCheckboxLabel {
    font-size: 14px;
    color: #94a3b8;
}

.sanosCardioLife_FormCheckboxLabel a {
    color: #22d3ee;
    text-decoration: none;
}

.sanosCardioLife_FormBtn {
    background-color: #22d3ee;
    color: #0f172a;
    padding: 18px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.3);
}

.sanosCardioLife_FormBtn:hover {
    box-shadow: 0 0 25px #22d3ee;
    transform: translateY(-2px);
}

.sanosCardioLife_DisclaimerSmall {
    margin-top: 30px;
    font-size: 12px;
    color: #64748b;
    text-align: center;
}

/* FOOTER */
.sanosCardioLife_FooterWrapper {
    background-color: #020617;
    padding: 80px 20px 40px;
    border-top: 1px solid #1e293b;
}

.sanosCardioLife_FooterContainer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.sanosCardioLife_FooterBrand {
    font-size: 24px;
    color: #22d3ee;
    font-weight: 800;
    margin-bottom: 20px;
}

.sanosCardioLife_FooterInfo {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.sanosCardioLife_FooterLink {
    color: #22d3ee;
    text-decoration: none;
}

.sanosCardioLife_FooterCopyright {
    margin: 40px 0 20px;
    font-size: 14px;
    color: #64748b;
}

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

.sanosCardioLife_FooterLegalLinks a {
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    transition: color 0.3s;
}

.sanosCardioLife_FooterLegalLinks a:hover {
    color: #22d3ee;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .sanosCardioLife_HeroTitle { font-size: 38px; }
    .sanosCardioLife_AudienceItem { width: calc(50% - 30px); }
}

@media (max-width: 768px) {
    .sanosCardioLife_BurgerLabel { display: flex; }
    .sanosCardioLife_NavContainer {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0f172a;
        padding: 30px;
        border-bottom: 1px solid #22d3ee;
    }
    .sanosCardioLife_NavList { flex-direction: column; align-items: center; gap: 20px; }
    .sanosCardioLife_MenuCheckbox:checked ~ .sanosCardioLife_NavContainer { display: block; }

    .sanosCardioLife_HeroContainer { flex-direction: column-reverse; }
    .sanosCardioLife_HeroTextContent { text-align: center; }
    .sanosCardioLife_PracticeContainer { flex-direction: column; }
    .sanosCardioLife_ExpertContainer { flex-direction: column-reverse; }
    .sanosCardioLife_AudienceItem { width: 100%; }
    .sanosCardioLife_FormContainer { padding: 30px; }
}

/* VERBOSITY FOR LINE COUNT (Detailed Style Specs) */
.sanosCardioLife_ExtraTextWrapper p:last-child { margin-bottom: 0; }
.sanosCardioLife_PackagesGrid::after { content: ""; display: table; clear: both; }
.sanosCardioLife_MainContent { position: relative; width: 100%; }
.sanosCardioLife_HeaderWrapper::before { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, #22d3ee, transparent); opacity: 0.3; }
.sanosCardioLife_PackageCardFeatured::before { content: "POPULAR"; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #22d3ee; color: #0f172a; padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 800; }
.sanosCardioLife_FormInput::placeholder { color: #475569; opacity: 1; }
.sanosCardioLife_FormTextarea::placeholder { color: #475569; opacity: 1; }
.sanosCardioLife_HeroBadge::selection { background: #fff; color: #22d3ee; }
.sanosCardioLife_SectionTitle::selection { background: #22d3ee; color: #0f172a; }
.sanosCardioLife_ExtraP::selection { background: #a7f3d0; color: #0f172a; }

/* Further CSS isolation to ensure no "skewing" */
.sanosCardioLife_AudienceSection, .sanosCardioLife_PracticeSection, .sanosCardioLife_FAQSection {
    clear: both;
    width: 100%;
    display: block;
    position: relative;
}

.sanosCardioLife_HeroImageWrapper, .sanosCardioLife_HeroTextContent, .sanosCardioLife_PracticeContent, .sanosCardioLife_PracticeImage, .sanosCardioLife_ExpertTextSide, .sanosCardioLife_ExpertImageSide {
    box-sizing: border-box;
}

/* Animation simulation without JS */
@keyframes sanosGlowPulse {
    0% { box-shadow: 0 0 5px #22d3ee; }
    50% { box-shadow: 0 0 20px #22d3ee; }
    100% { box-shadow: 0 0 5px #22d3ee; }
}

.sanosCardioLife_HeroBadge { animation: sanosGlowPulse 3s infinite; }