<style>
/* 
    Преміальний карбоновий стиль 
    Background: #060708
    Amber: #FFC55E
*/

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

html {
    scroll-behavior: smooth;
}

body.felovexPulseRoutineGlow_BodyRoot {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #060708;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
.felovexPulseRoutineGlow_HeaderWrapper {
    background-color: #0c0d0f;
    border-bottom: 2px solid #FFC55E;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.felovexPulseRoutineGlow_NavMain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.felovexPulseRoutineGlow_NavList {
    display: flex;
    list-style: none;
    gap: 25px;
}

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

.felovexPulseRoutineGlow_NavLink:hover {
    color: #FFC55E;
}

/* Mobile Menu */
.felovexPulseRoutineGlow_MenuCheckbox {
    display: none;
}

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

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

/* Hero Section */
.felovexPulseRoutineGlow_HeroSection {
    padding: 100px 0;
    position: relative;
}

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

.felovexPulseRoutineGlow_HeroVisual, .felovexPulseRoutineGlow_HeroContent {
    flex: 1;
}

.felovexPulseRoutineGlow_ImageRelContainer {
    position: relative;
    padding: 20px;
}

.felovexPulseRoutineGlow_HeroImg {
    width: 100%;
    border-radius: 15px;
    filter: grayscale(0.2) brightness(0.8);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.felovexPulseRoutineGlow_FloatingCard {
    position: absolute;
    background: rgba(26, 28, 30, 0.9);
    border: 1px solid #FFC55E;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 197, 94, 0.2);
    width: 200px;
}

.felovexPulseRoutineGlow_Float1 {
    top: 10%;
    left: -30px;
    animation: floatAnim 4s ease-in-out infinite;
}

.felovexPulseRoutineGlow_Float2 {
    bottom: 10%;
    right: -30px;
    animation: floatAnim 4s ease-in-out infinite reverse;
}

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

.felovexPulseRoutineGlow_FloatTitle {
    color: #FFC55E;
    font-weight: 700;
    margin-bottom: 5px;
}

.felovexPulseRoutineGlow_FloatText {
    font-size: 14px;
    color: #ccc;
}

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

.felovexPulseRoutineGlow_SubHeading {
    font-size: 20px;
    color: #FFC55E;
    margin-bottom: 20px;
    font-weight: 600;
}

.felovexPulseRoutineGlow_HeroText {
    margin-bottom: 20px;
    font-size: 17px;
    color: #bbb;
}

/* Buttons */
.felovexPulseRoutineGlow_PrimaryBtn {
    display: inline-block;
    background-color: #FFC55E;
    color: #060708;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.felovexPulseRoutineGlow_PrimaryBtn:hover {
    background-color: #ffd285;
    box-shadow: 0 0 20px rgba(255, 197, 94, 0.6);
    transform: translateY(-2px);
}

.felovexPulseRoutineGlow_SecondaryBtn {
    display: inline-block;
    background-color: transparent;
    color: #FFC55E;
    padding: 15px 34px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 1px solid #FFC55E;
}

.felovexPulseRoutineGlow_SecondaryBtn:hover {
    background-color: rgba(255, 197, 94, 0.1);
    box-shadow: 0 0 15px rgba(255, 197, 94, 0.3);
}

/* Sections Global */
.felovexPulseRoutineGlow_SectionHeader {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.felovexPulseRoutineGlow_GoldDot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #FFC55E;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 0 10px #FFC55E;
}

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

.felovexPulseRoutineGlow_SectionDesc {
    max-width: 700px;
    margin: 0 auto;
    color: #aaa;
    font-size: 18px;
}

/* For Whom */
.felovexPulseRoutineGlow_TargetSection {
    padding: 100px 0;
    background-color: #0a0b0d;
}

.felovexPulseRoutineGlow_TargetGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.felovexPulseRoutineGlow_TargetItem {
    background: #111316;
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.felovexPulseRoutineGlow_DecorLine {
    width: 50px;
    height: 3px;
    background-color: #FFC55E;
    margin-bottom: 20px;
}

.felovexPulseRoutineGlow_ItemTitle {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

/* Prices */
.felovexPulseRoutineGlow_PriceSection {
    padding: 100px 0;
}

.felovexPulseRoutineGlow_PriceGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.felovexPulseRoutineGlow_PriceCard {
    background: #111316;
    border: 1px solid #222;
    padding: 50px 30px;
    border-radius: 20px;
    width: 350px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.felovexPulseRoutineGlow_PriceCard:hover {
    border-color: #FFC55E;
}

.felovexPulseRoutineGlow_Featured {
    border: 2px solid #FFC55E;
    transform: scale(1.05);
    background: #16181b;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.felovexPulseRoutineGlow_PriceIconCircle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #1a1c1e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 1px solid #333;
}

.felovexPulseRoutineGlow_PriceIcon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.felovexPulseRoutineGlow_PackageName {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFC55E;
}

.felovexPulseRoutineGlow_PriceValue {
    margin-bottom: 30px;
}

.felovexPulseRoutineGlow_OldPrice {
    display: block;
    text-decoration: line-through;
    color: #666;
    font-size: 18px;
}

.felovexPulseRoutineGlow_NewPrice {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.felovexPulseRoutineGlow_PackageList {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.felovexPulseRoutineGlow_PackageList li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    font-size: 15px;
    color: #ccc;
    position: relative;
    padding-left: 20px;
}

.felovexPulseRoutineGlow_PackageList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFC55E;
}

/* Benefits */
.felovexPulseRoutineGlow_BenefitsSection {
    padding: 100px 0;
    background-color: #0c0d0f;
}

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

.felovexPulseRoutineGlow_BenefitsContent, .felovexPulseRoutineGlow_BenefitsVisual {
    flex: 1;
}

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

.felovexPulseRoutineGlow_BenefitItem {
    margin-bottom: 20px;
    background: #16181b;
    padding: 20px;
    border-left: 4px solid #FFC55E;
    border-radius: 0 8px 8px 0;
}

.felovexPulseRoutineGlow_BenefitsImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(255, 197, 94, 0.1);
}

/* Reviews */
.felovexPulseRoutineGlow_ReviewsSection {
    padding: 100px 0;
}

.felovexPulseRoutineGlow_ReviewsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.felovexPulseRoutineGlow_ReviewCard {
    background: #111316;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    border: 1px solid #1a1c1e;
}

.felovexPulseRoutineGlow_ReviewText {
    font-style: italic;
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

.felovexPulseRoutineGlow_ReviewAuthor {
    color: #FFC55E;
    font-weight: 700;
}

/* Expert Section */
.felovexPulseRoutineGlow_ExpertSection {
    padding: 100px 0;
    background: linear-gradient(rgba(6,7,8,0.8), rgba(6,7,8,0.8)), url('https://placehold.co/1920x600/060708/111316?text=Carbon+Texture&font=lato&width=1920&height=600');
    background-size: cover;
}

.felovexPulseRoutineGlow_ExpertBox {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(17, 19, 22, 0.95);
    padding: 80px 40px;
    border-radius: 30px;
    border: 1px solid #FFC55E;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

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

.felovexPulseRoutineGlow_ExpertName {
    font-size: 22px;
    font-weight: 700;
    color: #FFC55E;
}

.felovexPulseRoutineGlow_ExpertRole {
    color: #888;
}

/* FAQ */
.felovexPulseRoutineGlow_FaqSection {
    padding: 100px 0;
    background-color: #0c0d0f;
}

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

.felovexPulseRoutineGlow_FaqItem {
    margin-bottom: 15px;
    background: #111316;
    border-radius: 8px;
    overflow: hidden;
}

.felovexPulseRoutineGlow_FaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.felovexPulseRoutineGlow_FaqSummary::after {
    content: '+';
    color: #FFC55E;
    font-size: 24px;
}

.felovexPulseRoutineGlow_FaqItem[open] .felovexPulseRoutineGlow_FaqSummary::after {
    content: '−';
}

.felovexPulseRoutineGlow_FaqSummary:hover {
    background: #1a1c1e;
}

.felovexPulseRoutineGlow_FaqContent {
    padding: 20px;
    border-top: 1px solid #222;
    color: #aaa;
}

/* Form Section */
.felovexPulseRoutineGlow_FormSection {
    padding: 100px 0;
}

.felovexPulseRoutineGlow_FormGrid {
    display: flex;
    gap: 80px;
}

.felovexPulseRoutineGlow_FormTextSide {
    flex: 1;
}

.felovexPulseRoutineGlow_FormWrapper {
    flex: 1;
    background: #111316;
    padding: 50px;
    border-radius: 20px;
}

.felovexPulseRoutineGlow_FormField {
    margin-bottom: 25px;
}

.felovexPulseRoutineGlow_FormField label {
    display: block;
    margin-bottom: 10px;
    color: #FFC55E;
    font-weight: 600;
}

.felovexPulseRoutineGlow_FormField input, 
.felovexPulseRoutineGlow_FormField textarea {
    width: 100%;
    background: #060708;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    border-radius: 5px;
    outline: none;
}

.felovexPulseRoutineGlow_FormField input:focus, 
.felovexPulseRoutineGlow_FormField textarea:focus {
    border-color: #FFC55E;
}

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

.felovexPulseRoutineGlow_FormCheckbox a {
    color: #FFC55E;
}

.felovexPulseRoutineGlow_SubmitBtn {
    width: 100%;
    background-color: #FFC55E;
    color: #060708;
    padding: 18px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.felovexPulseRoutineGlow_SubmitBtn:hover {
    box-shadow: 0 0 25px rgba(255, 197, 94, 0.5);
}

.felovexPulseRoutineGlow_ContactInfo {
    margin-top: 40px;
}

.felovexPulseRoutineGlow_ContactInfo p {
    margin-bottom: 15px;
    font-size: 18px;
}

/* Info Sections (Extra Content) */
.felovexPulseRoutineGlow_InfoSection {
    padding: 100px 0;
}

.felovexPulseRoutineGlow_AltBg {
    background-color: #0a0b0d;
}

.felovexPulseRoutineGlow_RichContent p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #ccc;
}

.felovexPulseRoutineGlow_SubTitle {
    color: #FFC55E;
    font-size: 24px;
    margin: 40px 0 20px;
}

.felovexPulseRoutineGlow_RichContent ul {
    list-style: none;
    margin-bottom: 30px;
}

.felovexPulseRoutineGlow_RichContent ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.felovexPulseRoutineGlow_RichContent ul li::before {
    content: '✓';
    color: #FFC55E;
    position: absolute;
    left: 0;
    font-weight: 900;
}

/* Footer */
.felovexPulseRoutineGlow_Footer {
    background-color: #060708;
    border-top: 1px solid #1a1c1e;
    padding: 60px 0;
    text-align: center;
}

.felovexPulseRoutineGlow_FooterEmail {
    margin: 20px 0;
}

.felovexPulseRoutineGlow_FooterEmail a {
    color: #FFC55E;
    text-decoration: none;
}

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

.felovexPulseRoutineGlow_FooterLinks a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.felovexPulseRoutineGlow_FooterLinks a:hover {
    color: #FFC55E;
}

/* Responsive */
@media (max-width: 992px) {
    .felovexPulseRoutineGlow_HeroGrid, 
    .felovexPulseRoutineGlow_BenefitsGrid,
    .felovexPulseRoutineGlow_FormGrid {
        flex-direction: column;
    }
    
    .felovexPulseRoutineGlow_PriceCard {
        width: 100%;
        max-width: 450px;
    }

    .felovexPulseRoutineGlow_Featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .felovexPulseRoutineGlow_NavList {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0c0d0f;
        padding: 40px 20px;
        border-bottom: 2px solid #FFC55E;
    }

    .felovexPulseRoutineGlow_BurgerBtn {
        display: flex;
    }

    .felovexPulseRoutineGlow_MenuCheckbox:checked ~ .felovexPulseRoutineGlow_NavList {
        display: flex;
    }

    .felovexPulseRoutineGlow_MainHeading {
        font-size: 34px;
    }

    .felovexPulseRoutineGlow_Float1, .felovexPulseRoutineGlow_Float2 {
        display: none;
    }
}
</style>