/* General Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.veromavelGentleViewOrbitBody {
    font-family: 'Lato', sans-serif;
    background-color: #0A0C10;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
.veromavelGentleViewOrbitH1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #CFFF35;
}

.veromavelGentleViewOrbitSubH1 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.veromavelGentleViewOrbitH2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #CFFF35;
    text-transform: uppercase;
    position: relative;
}

.veromavelGentleViewOrbitH2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #CFFF35;
    margin: 15px auto 0;
}

.veromavelGentleViewOrbitH3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.veromavelGentleViewOrbitText {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #CCCCCC;
}

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

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

.veromavelGentleViewOrbitLogo {
    font-size: 2rem;
    font-weight: 900;
    color: #CFFF35;
    letter-spacing: 2px;
}

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

.veromavelGentleViewOrbitNavLink {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.veromavelGentleViewOrbitNavLink:hover {
    color: #CFFF35;
}

.veromavelGentleViewOrbitHeaderPulseLine {
    height: 2px;
    background: #CFFF35;
    width: 100%;
    animation: veromavelGentleViewOrbitPulse 3s infinite;
}

@keyframes veromavelGentleViewOrbitPulse {
    0% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: 0 0 10px #CFFF35; }
    100% { opacity: 0.3; }
}

/* Burger Menu */
.veromavelGentleViewOrbitMenuToggle {
    display: none;
}

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

.veromavelGentleViewOrbitBurger span {
    width: 30px;
    height: 3px;
    background: #CFFF35;
    transition: 0.3s;
}

/* Sections */
section {
    padding: 100px 0;
}

.veromavelGentleViewOrbitDarkBg {
    background-color: #12151A;
}

/* Hero Section */
.veromavelGentleViewOrbitHero {
    padding: 150px 0 100px;
}

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

.veromavelGentleViewOrbitHeroLeft {
    flex: 1;
}

.veromavelGentleViewOrbitHeroRight {
    flex: 1;
}

.veromavelGentleViewOrbitHeroGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.veromavelGentleViewOrbitHeroImg {
    width: calc(50% - 7.5px);
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #CFFF35;
}

.veromavelGentleViewOrbitHeroImg:last-child {
    width: 100%;
}

/* Buttons */
.veromavelGentleViewOrbitBtnPrimary {
    display: inline-block;
    padding: 18px 40px;
    background-color: #CFFF35;
    color: #0A0C10;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.veromavelGentleViewOrbitBtnPrimary:hover {
    box-shadow: 0 0 20px rgba(207, 255, 53, 0.6);
    transform: translateY(-3px);
}

.veromavelGentleViewOrbitBtnSecondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: #CFFF35;
    border: 2px solid #CFFF35;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

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

/* Reviews */
.veromavelGentleViewOrbitReviewsGrid {
    display: flex;
    gap: 30px;
}

.veromavelGentleViewOrbitReviewCard {
    flex: 1;
    background: #1A1D23;
    padding: 40px;
    border-left: 4px solid #CFFF35;
}

.veromavelGentleViewOrbitReviewText {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.veromavelGentleViewOrbitReviewAuthor {
    font-weight: 900;
    color: #CFFF35;
}

/* For Whom */
.veromavelGentleViewOrbitForWhomTopImg {
    margin-bottom: 40px;
}

.veromavelGentleViewOrbitFullImg {
    width: 100%;
    height: auto;
    border: 1px solid #333;
}

.veromavelGentleViewOrbitIntroText {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-align: center;
}

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

.veromavelGentleViewOrbitCheckItem {
    width: calc(50% - 10px);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.veromavelGentleViewOrbitCheckItem::before {
    content: '→';
    color: #CFFF35;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Prices */
.veromavelGentleViewOrbitPricesGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.veromavelGentleViewOrbitPriceCard {
    flex: 1;
    min-width: 250px;
    border: 1px solid #333;
    padding: 40px;
    text-align: center;
    transition: 0.3s;
}

.veromavelGentleViewOrbitPriceCardFeatured {
    border: 2px solid #CFFF35;
    background: #111419;
    transform: scale(1.05);
}

.veromavelGentleViewOrbitPriceTitle {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.veromavelGentleViewOrbitPriceValue {
    font-size: 2.5rem;
    font-weight: 900;
    color: #CFFF35;
    margin-bottom: 25px;
}

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

.veromavelGentleViewOrbitPriceList li {
    padding: 8px 0;
    border-bottom: 1px solid #222;
}

/* Expert Section */
.veromavelGentleViewOrbitExpertFlex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.veromavelGentleViewOrbitExpertQuote {
    flex: 1;
    background: #1A1D23;
    padding: 50px;
    position: relative;
}

.veromavelGentleViewOrbitExpertQuote blockquote {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 30px;
}

.veromavelGentleViewOrbitExpertName {
    font-size: 1.2rem;
    font-weight: 800;
    color: #CFFF35;
}

.veromavelGentleViewOrbitExpertDetails {
    flex: 1;
}

.veromavelGentleViewOrbitDisclosure {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
}

.veromavelGentleViewOrbitSummary {
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    color: #CFFF35;
}

.veromavelGentleViewOrbitDisclosureContent {
    padding: 0 0 20px;
    color: #BBB;
}

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

/* Form */
.veromavelGentleViewOrbitFormCard {
    max-width: 700px;
    margin: 0 auto;
    background: #1A1D23;
    padding: 50px;
    border: 1px solid #CFFF35;
}

.veromavelGentleViewOrbitFormField {
    margin-bottom: 25px;
}

.veromavelGentleViewOrbitLabel {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.veromavelGentleViewOrbitInput, 
.veromavelGentleViewOrbitTextarea {
    width: 100%;
    padding: 15px;
    background: #0A0C10;
    border: 1px solid #333;
    color: #FFF;
    font-family: inherit;
}

.veromavelGentleViewOrbitInput:focus, 
.veromavelGentleViewOrbitTextarea:focus {
    border-color: #CFFF35;
    outline: none;
}

.veromavelGentleViewOrbitTextarea {
    height: 120px;
    resize: vertical;
}

.veromavelGentleViewOrbitCheckboxWrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.veromavelGentleViewOrbitLabelSmall {
    font-size: 0.9rem;
}

.veromavelGentleViewOrbitLabelSmall a {
    color: #CFFF35;
}

/* Footer */
.veromavelGentleViewOrbitFooter {
    background: #000;
    padding: 80px 0 40px;
    border-top: 5px solid #CFFF35;
}

.veromavelGentleViewOrbitFooterTop {
    text-align: center;
    margin-bottom: 60px;
}

.veromavelGentleViewOrbitFooterText {
    margin-top: 15px;
    color: #888;
}

.veromavelGentleViewOrbitFooterText a {
    color: #FFF;
    text-decoration: none;
}

.veromavelGentleViewOrbitFooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.85rem;
}

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

.veromavelGentleViewOrbitFooterLinks a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.veromavelGentleViewOrbitFooterLinks a:hover {
    color: #CFFF35;
}

/* Responsive */
@media (max-width: 992px) {
    .veromavelGentleViewOrbitHeroContent,
    .veromavelGentleViewOrbitBenefitsFlex,
    .veromavelGentleViewOrbitExpertFlex {
        flex-direction: column;
    }
    
    .veromavelGentleViewOrbitReviewsGrid {
        flex-direction: column;
    }
    
    .veromavelGentleViewOrbitH1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .veromavelGentleViewOrbitNav {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 82px);
        background: #0A0C10;
        transition: 0.4s;
    }
    
    .veromavelGentleViewOrbitNavList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    
    .veromavelGentleViewOrbitBurger {
        display: flex;
    }
    
    .veromavelGentleViewOrbitMenuToggle:checked ~ .veromavelGentleViewOrbitNav {
        left: 0;
    }
    
    .veromavelGentleViewOrbitCheckItem {
        width: 100%;
    }
    
    .veromavelGentleViewOrbitFooterBottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}