/* Основные переменные и сброс */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.teromavilChilePulseCardio_Body {
    background-color: #0A0C10; /* Темный графит */
    color: #E0E0E0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.teromavilChilePulseCardio_HeaderMain {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
}

.teromavilChilePulseCardio_HeaderWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.teromavilChilePulseCardio_LogoText {
    font-size: 28px;
    font-weight: 800;
    color: #CFFF35; /* Лайм */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.teromavilChilePulseCardio_PulseLine {
    height: 3px;
    background: linear-gradient(90deg, transparent, #CFFF35, transparent);
    width: 100%;
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.teromavilChilePulseCardio_NavList {
    display: flex;
    list-style: none;
}

.teromavilChilePulseCardio_NavLink {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.teromavilChilePulseCardio_NavLink:hover {
    color: #CFFF35;
}

/* Burger Menu CSS-only */
.teromavilChilePulseCardio_MenuTrigger {
    display: none;
}

.teromavilChilePulseCardio_BurgerBtn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.teromavilChilePulseCardio_BurgerBtn span {
    width: 30px;
    height: 3px;
    background-color: #CFFF35;
    margin: 4px 0;
    transition: 0.3s;
}

/* Sections General */
section {
    padding: 80px 0;
}

.teromavilChilePulseCardio_SectionTitle {
    font-size: 36px;
    color: #CFFF35;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
}

/* Hero Section */
.teromavilChilePulseCardio_HeroGrid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.teromavilChilePulseCardio_MainHeroImg {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #CFFF35;
    box-shadow: 0 0 20px rgba(207, 255, 53, 0.2);
}

.teromavilChilePulseCardio_MiniGallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.teromavilChilePulseCardio_Thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #333;
}

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

.teromavilChilePulseCardio_MainTitle {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.teromavilChilePulseCardio_SubTitle {
    font-size: 22px;
    color: #CFFF35;
    margin-bottom: 20px;
    font-weight: 300;
}

.teromavilChilePulseCardio_Description {
    margin-bottom: 15px;
    font-size: 18px;
    color: #B0B0B0;
}

/* Buttons */
.teromavilChilePulseCardio_BtnPrimary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #CFFF35;
    color: #0A0C10;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 2px solid #CFFF35;
    margin-top: 20px;
}

.teromavilChilePulseCardio_BtnPrimary:hover {
    background-color: transparent;
    color: #CFFF35;
    box-shadow: 0 0 25px rgba(207, 255, 53, 0.5);
}

.teromavilChilePulseCardio_BtnSecondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #CFFF35;
    border: 1px solid #CFFF35;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.teromavilChilePulseCardio_BtnSecondary:hover {
    background-color: #CFFF35;
    color: #0A0C10;
}

/* Expert Section */
.teromavilChilePulseCardio_ExpertCard {
    background-color: #161920;
    padding: 50px;
    border-radius: 15px;
    border-left: 5px solid #CFFF35;
}

.teromavilChilePulseCardio_Quote {
    font-size: 24px;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 20px;
    position: relative;
}

.teromavilChilePulseCardio_ExpertName {
    font-weight: 700;
    color: #CFFF35;
    margin-bottom: 30px;
}

.teromavilChilePulseCardio_DetailsItem {
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.teromavilChilePulseCardio_DetailsSummary {
    padding: 15px;
    background-color: #1A1C22;
    cursor: pointer;
    color: #CFFF35;
    font-weight: bold;
}

.teromavilChilePulseCardio_DetailsContent {
    padding: 15px;
    background-color: #121419;
}

/* Who is it for / Services */
.teromavilChilePulseCardio_ServicesGrid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.teromavilChilePulseCardio_ServiceCard {
    flex: 1;
    min-width: 280px;
    background-color: #161920;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.teromavilChilePulseCardio_ServiceCard:hover {
    transform: translateY(-10px);
}

.teromavilChilePulseCardio_ServiceImg {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

.teromavilChilePulseCardio_PriceTag {
    display: block;
    margin-top: 15px;
    color: #CFFF35;
    font-weight: bold;
}

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

.teromavilChilePulseCardio_CheckItem {
    flex: 1;
    min-width: 250px;
    padding-left: 30px;
    position: relative;
    color: #E0E0E0;
}

.teromavilChilePulseCardio_CheckItem::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #CFFF35;
}

/* Benefits Section */
.teromavilChilePulseCardio_BenefitsGrid {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.teromavilChilePulseCardio_BenefitItem {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 2px solid #CFFF35;
}

.teromavilChilePulseCardio_ImgResponsive {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Pricing */
.teromavilChilePulseCardio_PricingGrid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.teromavilChilePulseCardio_PriceCard {
    flex: 1;
    min-width: 300px;
    background-color: #161920;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #333;
}

.teromavilChilePulseCardio_PriceCardFeatured {
    border: 2px solid #CFFF35;
    transform: scale(1.05);
    background-color: #1A1E26;
}

.teromavilChilePulseCardio_PriceValue {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 20px 0;
}

.teromavilChilePulseCardio_PriceValue span {
    font-size: 16px;
    color: #B0B0B0;
}

.teromavilChilePulseCardio_PriceFeatures {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.teromavilChilePulseCardio_PriceFeatures li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    color: #B0B0B0;
}

.teromavilChilePulseCardio_QuickLinks {
    margin-top: 20px;
}

.teromavilChilePulseCardio_QuickLinks a {
    color: #666;
    font-size: 12px;
    text-decoration: none;
}

/* Text Sections */
.teromavilChilePulseCardio_TextSection {
    background-color: #0D0F14;
}

.teromavilChilePulseCardio_BgAlt {
    background-color: #121419;
}

/* FAQ */
.teromavilChilePulseCardio_FaqList {
    max-width: 800px;
    margin: 0 auto;
}

.teromavilChilePulseCardio_FaqItem {
    background-color: #161920;
    margin-bottom: 10px;
    border-radius: 5px;
}

.teromavilChilePulseCardio_FaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #FFFFFF;
}

.teromavilChilePulseCardio_FaqContent {
    padding: 0 20px 20px;
    color: #B0B0B0;
}

/* Form */
.teromavilChilePulseCardio_FormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #161920;
    padding: 40px;
    border-radius: 20px;
}

.teromavilChilePulseCardio_MainForm {
    display: flex;
    flex-direction: column;
}

.teromavilChilePulseCardio_InputGroup {
    margin-bottom: 20px;
}

.teromavilChilePulseCardio_InputGroup label {
    display: block;
    margin-bottom: 8px;
    color: #CFFF35;
}

.teromavilChilePulseCardio_InputGroup input,
.teromavilChilePulseCardio_InputGroup textarea {
    width: 100%;
    padding: 12px;
    background-color: #0A0C10;
    border: 1px solid #333;
    color: #FFFFFF;
    border-radius: 5px;
}

.teromavilChilePulseCardio_CheckboxGroup {
    margin-bottom: 20px;
    font-size: 14px;
}

.teromavilChilePulseCardio_SubmitBtn {
    padding: 15px;
    background-color: #CFFF35;
    border: none;
    color: #0A0C10;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.teromavilChilePulseCardio_SubmitBtn:hover {
    box-shadow: 0 0 15px rgba(207, 255, 53, 0.7);
}

/* Footer */
.teromavilChilePulseCardio_FooterMain {
    background-color: #050608;
    padding: 60px 0;
    text-align: center;
}

.teromavilChilePulseCardio_FooterContent p {
    margin-bottom: 10px;
}

.teromavilChilePulseCardio_FooterLinks {
    margin-top: 30px;
}

.teromavilChilePulseCardio_FootLink {
    color: #666;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

.teromavilChilePulseCardio_FootLink:hover {
    color: #CFFF35;
}

/* Responsive */
@media (max-width: 992px) {
    .teromavilChilePulseCardio_PricingCardFeatured {
        transform: scale(1);
    }
    .teromavilChilePulseCardio_MainTitle {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .teromavilChilePulseCardio_BurgerBtn {
        display: flex;
    }

    .teromavilChilePulseCardio_Navigation {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #161920;
        padding: 20px;
    }

    .teromavilChilePulseCardio_NavList {
        flex-direction: column;
    }

    .teromavilChilePulseCardio_NavLink {
        margin: 10px 0;
        display: block;
    }

    .teromavilChilePulseCardio_MenuTrigger:checked ~ .teromavilChilePulseCardio_Navigation {
        display: block;
    }

    .teromavilChilePulseCardio_HeroGrid, 
    .teromavilChilePulseCardio_BenefitsGrid {
        flex-direction: column;
    }

    .teromavilChilePulseCardio_HeroTextBlock, 
    .teromavilChilePulseCardio_BenefitsText {
        text-align: center;
    }
}