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

:root {
    --fleeceway-bg: #020617;
    --fleeceway-accent-green: #22c55e;
    --fleeceway-accent-aqua: #38bdf8;
    --fleeceway-text: #e2e8f0;
    --fleeceway-text-muted: #94a3b8;
    --fleeceway-card-bg: #0f172a;
    --fleeceway-neon-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
    --fleeceway-transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body.fleecewayMensVitalField_MainBody {
    background-color: var(--fleeceway-bg);
    color: var(--fleeceway-text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Disclaimer */
.fleecewayMensVitalField_TopDisclaimer {
    background: #000;
    border-bottom: 1px solid var(--fleeceway-accent-green);
    padding: 10px 0;
    font-size: 11px;
    color: var(--fleeceway-text-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
.fleecewayMensVitalField_Header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);
}

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

.fleecewayMensVitalField_Logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--fleeceway-accent-aqua);
    letter-spacing: 2px;
    text-shadow: var(--fleeceway-neon-shadow);
}

.fleecewayMensVitalField_NavToggle {
    display: none;
}

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

.fleecewayMensVitalField_NavLink {
    color: var(--fleeceway-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--fleeceway-transition);
}

.fleecewayMensVitalField_NavLink:hover {
    color: var(--fleeceway-accent-aqua);
}

.fleecewayMensVitalField_HeaderLine {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fleeceway-accent-aqua), transparent);
    margin-top: 15px;
    border-radius: 50px;
}

/* Burger */
.fleecewayMensVitalField_Burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.fleecewayMensVitalField_Burger span {
    width: 25px;
    height: 3px;
    background: var(--fleeceway-accent-aqua);
    border-radius: 2px;
}

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

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

.fleecewayMensVitalField_HeroImageWrap {
    flex: 1;
}

.fleecewayMensVitalField_MainHeroImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.fleecewayMensVitalField_HeroContent {
    flex: 1;
}

.fleecewayMensVitalField_H1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--fleeceway-accent-aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fleecewayMensVitalField_Subtext {
    font-size: 20px;
    color: var(--fleeceway-accent-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.fleecewayMensVitalField_Description {
    margin-bottom: 20px;
    color: var(--fleeceway-text-muted);
}

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

.fleecewayMensVitalField_HeroList li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--fleeceway-text);
}

.fleecewayMensVitalField_Check {
    color: var(--fleeceway-accent-green);
    font-weight: bold;
}

.fleecewayMensVitalField_CtaBtn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--fleeceway-accent-aqua);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
    transition: var(--fleeceway-transition);
}

.fleecewayMensVitalField_CtaBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.8);
}

/* Section Common */
.fleecewayMensVitalField_H2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
}

.fleecewayMensVitalField_SectionIntroText {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 50px;
    color: var(--fleeceway-text-muted);
}

/* For Whom Section */
.fleecewayMensVitalField_ForWhomSection {
    padding: 100px 0;
    background: rgba(15, 23, 42, 0.5);
}

.fleecewayMensVitalField_NumberedList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.fleecewayMensVitalField_ListItem {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--fleeceway-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--fleeceway-transition);
}

.fleecewayMensVitalField_ListItem:hover {
    border-color: var(--fleeceway-accent-green);
    transform: scale(1.02);
}

.fleecewayMensVitalField_ItemNumber {
    font-size: 40px;
    font-weight: 900;
    color: var(--fleeceway-accent-green);
    opacity: 0.5;
    line-height: 1;
}

.fleecewayMensVitalField_ItemText h3 {
    margin-bottom: 10px;
    color: var(--fleeceway-accent-aqua);
}

.fleecewayMensVitalField_ItemText p {
    font-size: 14px;
    color: var(--fleeceway-text-muted);
}

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

.fleecewayMensVitalField_TableResponsive {
    overflow-x: auto;
}

.fleecewayMensVitalField_PricingTable {
    width: 100%;
    border-collapse: collapse;
    background: var(--fleeceway-card-bg);
    border-radius: 15px;
    overflow: hidden;
}

.fleecewayMensVitalField_PricingTable th, 
.fleecewayMensVitalField_PricingTable td {
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fleecewayMensVitalField_PricingTable th {
    background: rgba(56, 189, 248, 0.1);
    color: var(--fleeceway-accent-aqua);
    font-weight: 700;
    text-transform: uppercase;
}

.fleecewayMensVitalField_PricingTable tr:last-child td {
    border-bottom: none;
}

.fleecewayMensVitalField_PriceBtn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--fleeceway-accent-green);
    color: var(--fleeceway-accent-green);
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    transition: var(--fleeceway-transition);
}

.fleecewayMensVitalField_PriceBtn:hover {
    background: var(--fleeceway-accent-green);
    color: #000;
}

/* FAQ Section */
.fleecewayMensVitalField_FaqSection {
    padding: 100px 0;
    background: #01040a;
}

.fleecewayMensVitalField_FaqGrid {
    display: flex;
    gap: 40px;
}

.fleecewayMensVitalField_FaqCol {
    flex: 1;
}

.fleecewayMensVitalField_FaqItem {
    background: var(--fleeceway-card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border-left: 4px solid var(--fleeceway-accent-aqua);
}

.fleecewayMensVitalField_FaqTitle {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 50px;
}

.fleecewayMensVitalField_FaqTitle::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    color: var(--fleeceway-accent-aqua);
}

details[open] .fleecewayMensVitalField_FaqTitle::after {
    content: '-';
}

.fleecewayMensVitalField_FaqBody {
    padding: 0 20px 20px;
    color: var(--fleeceway-text-muted);
    font-size: 15px;
}

/* Quote Section */
.fleecewayMensVitalField_QuoteSection {
    padding: 80px 0;
    text-align: center;
}

.fleecewayMensVitalField_QuoteBlock {
    font-size: 28px;
    font-style: italic;
    color: var(--fleeceway-text);
    max-width: 900px;
    margin: 0 auto 30px;
}

.fleecewayMensVitalField_QuoteDivider {
    width: 60px;
    height: 2px;
    background: var(--fleeceway-accent-green);
    margin: 0 auto 20px;
}

.fleecewayMensVitalField_QuoteAuthor {
    color: var(--fleeceway-accent-aqua);
    font-weight: 700;
    text-transform: uppercase;
    font-style: normal;
}

/* Practice Section */
.fleecewayMensVitalField_PracticeSection {
    padding: 100px 0;
}

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

.fleecewayMensVitalField_PracticeContent {
    flex: 1;
}

.fleecewayMensVitalField_PracticeImageWrap {
    flex: 1;
}

.fleecewayMensVitalField_PracticeImg {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.fleecewayMensVitalField_PracticeList {
    list-style: none;
}

.fleecewayMensVitalField_PracticeItem {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fleecewayMensVitalField_PracticeItem h4 {
    color: var(--fleeceway-accent-green);
    font-size: 20px;
    margin-bottom: 5px;
}

.fleecewayMensVitalField_PracticeItem p {
    color: var(--fleeceway-text-muted);
}

/* Extra Text Sections */
.fleecewayMensVitalField_ExtraTextSection {
    padding: 80px 0;
}

.fleecewayMensVitalField_AltBg {
    background: rgba(56, 189, 248, 0.05);
}

.fleecewayMensVitalField_TextColumn h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--fleeceway-accent-aqua);
}

.fleecewayMensVitalField_TextColumn p {
    margin-bottom: 20px;
    color: var(--fleeceway-text-muted);
}

.fleecewayMensVitalField_TextColumn ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--fleeceway-accent-green);
}

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

.fleecewayMensVitalField_FormBox {
    max-width: 600px;
    margin: 0 auto;
    background: var(--fleeceway-card-bg);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.fleecewayMensVitalField_FormSub {
    text-align: center;
    margin-bottom: 40px;
    color: var(--fleeceway-text-muted);
}

.fleecewayMensVitalField_InputGroup {
    margin-bottom: 20px;
}

.fleecewayMensVitalField_InputGroup label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--fleeceway-accent-aqua);
}

.fleecewayMensVitalField_Input, 
.fleecewayMensVitalField_Textarea {
    width: 100%;
    background: #1e293b;
    border: 1px solid #334155;
    padding: 12px 15px;
    color: #fff;
    border-radius: 5px;
    outline: none;
    transition: var(--fleeceway-transition);
}

.fleecewayMensVitalField_Input:focus, 
.fleecewayMensVitalField_Textarea:focus {
    border-color: var(--fleeceway-accent-aqua);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.fleecewayMensVitalField_CheckboxGroup {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--fleeceway-text-muted);
}

.fleecewayMensVitalField_CheckboxGroup a {
    color: var(--fleeceway-accent-aqua);
}

.fleecewayMensVitalField_SubmitBtn {
    width: 100%;
    padding: 15px;
    background: var(--fleeceway-accent-green);
    border: none;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--fleeceway-transition);
}

.fleecewayMensVitalField_SubmitBtn:hover {
    background: var(--fleeceway-accent-aqua);
    transform: translateY(-2px);
}

/* Footer */
.fleecewayMensVitalField_Footer {
    padding: 80px 0 40px;
    background: #000;
}

.fleecewayMensVitalField_FooterTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.fleecewayMensVitalField_FooterLogo {
    font-size: 28px;
    font-weight: 800;
    color: var(--fleeceway-accent-aqua);
    margin-bottom: 20px;
}

.fleecewayMensVitalField_FooterInfo {
    max-width: 400px;
}

.fleecewayMensVitalField_FooterContacts a {
    color: var(--fleeceway-accent-green);
    text-decoration: none;
}

.fleecewayMensVitalField_FooterLine {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.fleecewayMensVitalField_FooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--fleeceway-text-muted);
}

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

.fleecewayMensVitalField_FooterLinks a {
    color: var(--fleeceway-text-muted);
    text-decoration: none;
    transition: var(--fleeceway-transition);
}

.fleecewayMensVitalField_FooterLinks a:hover {
    color: var(--fleeceway-accent-aqua);
}

/* Responsiveness */
@media (max-width: 992px) {
    .fleecewayMensVitalField_HeroGrid, 
    .fleecewayMensVitalField_PracticeGrid {
        flex-direction: column;
        text-align: center;
    }
    
    .fleecewayMensVitalField_HeroList li {
        justify-content: center;
    }
    
    .fleecewayMensVitalField_NumberedList {
        grid-template-columns: 1fr;
    }
    
    .fleecewayMensVitalField_FaqGrid {
        flex-direction: column;
    }
    
    .fleecewayMensVitalField_FooterTop {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .fleecewayMensVitalField_Burger {
        display: flex;
    }
    
    .fleecewayMensVitalField_Nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--fleeceway-bg);
        display: none;
        padding: 40px 20px;
        border-bottom: 2px solid var(--fleeceway-accent-aqua);
    }
    
    .fleecewayMensVitalField_NavList {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .fleecewayMensVitalField_NavToggle:checked ~ .fleecewayMensVitalField_Nav {
        display: block;
    }
    
    .fleecewayMensVitalField_H1 {
        font-size: 36px;
    }
    
    .fleecewayMensVitalField_FooterBottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .fleecewayMensVitalField_FooterLinks {
        flex-direction: column;
        gap: 10px;
    }
}