/* ./assets/style.css */

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

html {
    scroll-behavior: smooth;
}

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

.HmbgContainerWide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.HmbgContainerSmall {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.HmbgHeaderMain {
    background: rgba(17, 24, 39, 0.95);
    border-bottom: 1px solid rgba(79, 70, 229, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.HmbgLogoText {
    font-size: 28px;
    font-weight: 800;
    color: #c4b5fd;
    letter-spacing: 1px;
}

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

.HmbgNavLink {
    color: #f8fafc;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.HmbgNavLink:hover {
    color: #4f46e5;
}

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

.HmbgBurgerBtn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.HmbgBurgerBtn span {
    display: block;
    width: 30px;
    height: 2px;
    background: #f8fafc;
    transition: 0.3s;
}

.HmbgMobileMenu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #111827;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 20px;
    transform: translateY(-150%);
    transition: 0.5s transform ease-in-out;
    border-bottom: 2px solid #4f46e5;
}

.HmbgMenuCheckbox:checked ~ .HmbgMobileMenu {
    transform: translateY(0);
}

.HmbgMobileMenu a {
    color: #f8fafc;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

/* Decorative Ribbon */
.HmbgDecorativeRibbon {
    height: 6px;
    background: linear-gradient(90deg, #4f46e5, #c4b5fd, #4f46e5);
    width: 100%;
}

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

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

.HmbgHeroImageWrapper, .HmbgHeroContentBox {
    flex: 1;
    min-width: 350px;
}

.HmbgHeroImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(79, 70, 229, 0.2);
    object-fit: cover;
}

.HmbgMainTitle {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #f8fafc;
    font-weight: 800;
}

.HmbgHeroSub {
    font-size: 20px;
    color: #c4b5fd;
    margin-bottom: 30px;
    font-weight: 500;
}

.HmbgHeroText {
    margin-bottom: 20px;
    font-size: 17px;
    opacity: 0.9;
}

.HmbgHeroIcons {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.HmbgIconItem {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.HmbgIconCircle {
    width: 30px;
    height: 30px;
    background: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.HmbgAquaBtn {
    display: inline-block;
    padding: 18px 45px;
    background: #4f46e5;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 255, 224, 0.3);
    transition: 0.3s;
    border: 1px solid rgba(196, 181, 253, 0.3);
}

.HmbgAquaBtn:hover {
    box-shadow: 0 0 30px rgba(0, 255, 224, 0.6);
    transform: translateY(-3px);
    background: #4338ca;
}

/* Titles */
.HmbgSectionTitle {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #f8fafc;
    position: relative;
    padding-bottom: 15px;
}

.HmbgSectionTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #4f46e5;
    border-radius: 2px;
}

.HmbgSectionTitle.Left {
    text-align: left;
}

.HmbgSectionTitle.Left::after {
    left: 0;
    transform: none;
}

/* FAQ Section */
.HmbgFAQSection {
    padding: 100px 0;
    background: rgba(31, 41, 55, 0.4);
}

.HmbgFAQItem {
    background: rgba(79, 70, 229, 0.05);
    border: 1px solid rgba(196, 181, 253, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.HmbgFAQSummary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.HmbgFAQArrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #c4b5fd;
    border-bottom: 2px solid #c4b5fd;
    transform: rotate(45deg);
    transition: 0.3s;
}

details[open] .HmbgFAQArrow {
    transform: rotate(-135deg);
}

.HmbgFAQContent {
    padding: 0 25px 25px;
    color: #d1d5db;
}

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

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

.HmbgPracticeTextBox, .HmbgPracticeImageBox {
    flex: 1;
    min-width: 350px;
}

.HmbgPracticeDesc {
    font-size: 18px;
    margin-bottom: 30px;
}

.HmbgCheckList {
    list-style: none;
}

.HmbgCheckItem {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
}

.HmbgMarker {
    width: 12px;
    height: 12px;
    background: #4f46e5;
    border-radius: 2px;
    flex-shrink: 0;
}

.HmbgPracticeImg {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(196, 181, 253, 0.2);
}

/* Expert Section */
.HmbgExpertSection {
    padding: 100px 0;
    background: linear-gradient(180deg, #111827 0%, #1e1b4b 100%);
}

.HmbgExpertCard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(196, 181, 253, 0.1);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.HmbgExpertPhoto {
    flex: 1;
    min-width: 280px;
}

.HmbgExpertImg {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(20%);
}

.HmbgExpertInfo {
    flex: 2;
    min-width: 300px;
}

.HmbgQuote {
    font-size: 24px;
    font-style: italic;
    color: #c4b5fd;
    margin-bottom: 30px;
    line-height: 1.4;
}

.HmbgExpertName {
    font-size: 28px;
    margin-bottom: 5px;
}

.HmbgExpertRole {
    color: #4f46e5;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 14px;
}

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

.HmbgExtraTextSection.AlternativeBg {
    background: rgba(79, 70, 229, 0.05);
}

.HmbgTextColumns {
    column-count: 2;
    column-gap: 40px;
}

.HmbgAccentText {
    font-size: 22px;
    color: #f8fafc;
    margin-bottom: 20px;
    line-height: 1.3;
}

.HmbgHighlight {
    color: #4f46e5;
    font-weight: 700;
}

.HmbgSimpleList {
    margin: 20px 0;
    list-style-position: inside;
}

.HmbgSimpleList li {
    margin-bottom: 10px;
}

/* Services / Pricing */
.HmbgServicesSection {
    padding: 100px 0;
}

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

.HmbgPriceCard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 181, 253, 0.1);
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.HmbgPriceCard:hover {
    transform: translateY(-10px);
    border-color: #4f46e5;
}

.HmbgPriceCard.Highlighted {
    background: rgba(79, 70, 229, 0.1);
    border: 2px solid #4f46e5;
}

.HmbgCardBadge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.HmbgPriceName {
    font-size: 24px;
    margin-bottom: 20px;
}

.HmbgPriceValue {
    font-size: 36px;
    font-weight: 800;
    color: #c4b5fd;
    margin-bottom: 30px;
}

.HmbgPriceFeatures {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.HmbgPriceFeatures li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.HmbgPriceBtn {
    display: block;
    padding: 15px;
    background: transparent;
    border: 2px solid #4f46e5;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.HmbgPriceBtn:hover {
    background: #4f46e5;
}

/* Target Section */
.HmbgTargetSection {
    padding: 100px 0;
    background: rgba(31, 41, 55, 0.2);
}

.HmbgTargetIntro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #d1d5db;
}

.HmbgAccItem {
    border-bottom: 1px solid rgba(196, 181, 253, 0.2);
}

.HmbgAccSummary {
    padding: 25px 0;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.HmbgAccBody {
    padding: 0 0 25px 0;
}

/* Contact Form */
.HmbgContactSection {
    padding: 100px 0;
}

.HmbgContactFormWrapper {
    background: rgba(31, 41, 55, 0.6);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.HmbgFormTitle {
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
}

.HmbgFormSubtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #c4b5fd;
}

.HmbgFormGroup {
    margin-bottom: 20px;
}

.HmbgFormGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.HmbgFormGroup input, .HmbgFormGroup textarea {
    width: 100%;
    padding: 15px;
    background: #111827;
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 10px;
    color: white;
}

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

.HmbgCheckboxGroup a {
    color: #c4b5fd;
}

.HmbgSubmitBtn {
    width: 100%;
    padding: 20px;
    background: #4f46e5;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    transition: 0.3s;
}

.HmbgSubmitBtn:hover {
    background: #4338ca;
    transform: scale(1.02);
}

/* Footer */
.HmbgFooterMain {
    padding: 80px 0 40px;
    background: #0b0f1a;
    border-top: 1px solid rgba(196, 181, 253, 0.1);
}

.HmbgFooterContent {
    text-align: center;
}

.HmbgFooterBrand {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.HmbgDisclaimerText {
    font-size: 12px;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.6;
}

.HmbgContactMail {
    margin-bottom: 30px;
}

.HmbgContactMail a {
    color: #4f46e5;
    text-decoration: none;
}

.HmbgFooterLinks {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.HmbgFooterLinks a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
}

.HmbgFooterLinks a:hover {
    color: #4f46e5;
}

.HmbgGeo {
    font-size: 14px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 992px) {
    .HmbgTextColumns {
        column-count: 1;
    }
    .HmbgHeaderContent {
        padding: 0 10px;
    }
    .HmbgNavList {
        display: none;
    }
    .HmbgBurgerBtn {
        display: flex;
    }
    .HmbgMainTitle {
        font-size: 36px;
    }
    .HmbgHeroGrid, .HmbgPracticeGrid, .HmbgExpertCard {
        flex-direction: column;
        text-align: center;
    }
    .HmbgSectionTitle.Left {
        text-align: center;
    }
    .HmbgSectionTitle.Left::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .HmbgCheckItem {
        justify-content: center;
    }
}

.HmbgSuccessPage { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: #111827; color: white; }