/* 
   PROJECT: Urbanpure - Dark Graphite Wellness Style
   PALETTE: Background #07090C, Accent #4FF7FF, Text #f0fdf4
*/

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

html {
    scroll-behavior: smooth;
}

body.UpMaBodyStyle {
    background-color: #07090C;
    color: #f0fdf4;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    color: #ffffff;
    line-height: 1.2;
}

.UpMaMainTitle {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.UpMaSectionTitle {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.UpMaSectionTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4FF7FF;
}

.UpMaSectionSubtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #86efac;
    margin-bottom: 3rem;
}

/* Header */
.UpMaHeaderMain {
    background: rgba(7, 9, 12, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(79, 247, 255, 0.1);
}

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

.UpMaLogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4FF7FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.UpMaNavLinks {
    display: flex;
    gap: 30px;
}

.UpMaNavLink {
    color: #f0fdf4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.UpMaNavLink:hover {
    color: #4FF7FF;
}

.UpMaAccentRail {
    width: 100%;
    height: 5px;
    background: #4FF7FF;
    position: absolute;
    bottom: -5px;
    left: 0;
    box-shadow: 0 0 15px rgba(79, 247, 255, 0.6);
}

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

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

.UpMaBurgerBtn span {
    width: 25px;
    height: 3px;
    background: #4FF7FF;
    transition: 0.3s;
}

/* Hero Section */
.UpMaHeroWrapper {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

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

.UpMaHeroContent {
    flex: 1;
}

.UpMaHeroSub {
    font-size: 1.4rem;
    color: #4FF7FF;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.UpMaHeroText {
    margin-bottom: 1.2rem;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.UpMaHeroBtnGroup {
    margin-top: 2rem;
}

.UpMaHeroImageWrap {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.UpMaHeroImg {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    z-index: 5;
    box-shadow: 0 0 40px rgba(79, 247, 255, 0.2);
    border: 1px solid rgba(79, 247, 255, 0.3);
}

.UpMaDecorShape1 {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border: 2px solid #4FF7FF;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: rotateDecor 20s linear infinite;
}

.UpMaDecorShape2 {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: rgba(79, 247, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

@keyframes rotateDecor {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Buttons */
.UpMaPrimaryBtn {
    display: inline-block;
    background: #4FF7FF;
    color: #07090C;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(79, 247, 255, 0.4);
}

.UpMaPrimaryBtn:hover {
    background: #ffffff;
    box-shadow: 0 0 25px rgba(79, 247, 255, 0.8);
    transform: translateY(-2px);
}

.UpMaSecondaryBtn {
    display: inline-block;
    background: transparent;
    color: #4FF7FF;
    padding: 14px 34px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid #4FF7FF;
    cursor: pointer;
}

.UpMaSecondaryBtn:hover {
    background: rgba(79, 247, 255, 0.1);
    color: #ffffff;
}

/* Expert Block */
.UpMaExpertSection {
    padding: 80px 0;
    background: #0d1117;
}

.UpMaQuoteCard {
    background: #161b22;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #30363d;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.UpMaQuoteIcon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(79, 247, 255, 0.1);
    line-height: 1;
}

.UpMaExpertQuote {
    font-size: 1.3rem;
    font-style: italic;
    color: #e6edf3;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.UpMaExpertName {
    font-weight: bold;
    font-size: 1.2rem;
    color: #4FF7FF;
}

.UpMaExpertRole {
    font-size: 0.9rem;
    color: #8b949e;
}

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

.UpMaPricingGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.UpMaPriceCard {
    background: #0d1117;
    border: 1px solid #30363d;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

.UpMaPriceCardActive {
    border: 2px solid #4FF7FF;
    position: relative;
    transform: scale(1.05);
}

.UpMaPriceCardActive::before {
    content: 'Популярний вибір';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4FF7FF;
    color: #07090C;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
}

.UpMaCardHead {
    text-align: center;
    margin-bottom: 2rem;
}

.UpMaPackageName {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.UpMaPriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4FF7FF;
}

.UpMaPriceValue span {
    font-size: 1rem;
    color: #8b949e;
}

.UpMaPackageList {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.UpMaPackageList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.UpMaPackageList li::before {
    content: '→';
    margin-right: 10px;
    color: #4FF7FF;
}

.UpMaMedicalDisclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #8b949e;
    margin-top: 30px;
}

/* Text Sections */
.UpMaTextSection {
    padding: 100px 0;
}

.UpMaBgAlt {
    background: #0d1117;
}

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

.UpMaTextCol {
    flex: 1;
}

.UpMaTextCol p {
    margin-bottom: 1.5rem;
}

.UpMaCustomList {
    list-style: none;
    margin-bottom: 1.5rem;
}

.UpMaCustomList li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.UpMaCustomList li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 2px;
    background: #4FF7FF;
}

/* Audience Section */
.UpMaWhoSection {
    padding: 100px 0;
}

.UpMaAudienceGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.UpMaAudienceCard {
    background: #161b22;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #30363d;
}

.UpMaAudienceImg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.UpMaAudienceCard h4 {
    margin-bottom: 15px;
    color: #4FF7FF;
}

.UpMaWhoListWrap {
    background: rgba(79, 247, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
}

.UpMaCheckList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
}

.UpMaCheckList li::before {
    content: '✓';
    margin-right: 15px;
    color: #4FF7FF;
    font-weight: bold;
}

/* Regular Practice Section */
.UpMaRegularPractice {
    padding: 100px 0;
    background: #0d1117;
}

.UpMaRegularContent {
    flex: 1.2;
    position: relative;
}

.UpMaRegularImage {
    flex: 0.8;
}

.UpMaRegularImg {
    width: 100%;
    border-radius: 15px;
    filter: grayscale(0.5);
    transition: 0.5s;
}

.UpMaRegularImg:hover {
    filter: grayscale(0);
}

.UpMaBenefitsList {
    list-style: none;
    margin: 30px 0;
}

.UpMaBenefitsList li {
    padding: 12px 0;
    border-left: 3px solid #4FF7FF;
    padding-left: 20px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.UpMaFloatingQuote {
    background: #4FF7FF;
    color: #07090C;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    width: 300px;
    position: absolute;
    bottom: -30px;
    right: 0;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

/* FAQ */
.UpMaFaqBlock {
    padding: 100px 0;
}

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

.UpMaFaqItem {
    margin-bottom: 15px;
    border: 1px solid #30363d;
    border-radius: 10px;
    overflow: hidden;
}

.UpMaFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    background: #161b22;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.UpMaFaqSummary span {
    color: #4FF7FF;
}

.UpMaFaqSummary::-webkit-details-marker {
    display: none;
}

.UpMaFaqContent {
    padding: 20px;
    background: #0d1117;
    color: #cbd5e1;
}

/* Form */
.UpMaFormBlock {
    padding: 100px 0;
    background: #07090C;
}

.UpMaFormCard {
    max-width: 700px;
    margin: 0 auto;
    background: #161b22;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #30363d;
}

.UpMaFormTitle {
    text-align: center;
    margin-bottom: 10px;
}

.UpMaFormSub {
    text-align: center;
    color: #8b949e;
    margin-bottom: 30px;
}

.UpMaMainForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.UpMaInputGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.UpMaInputGroup label {
    font-size: 0.9rem;
    color: #4FF7FF;
}

.UpMaInputGroup input, 
.UpMaInputGroup textarea {
    background: #0d1117;
    border: 1px solid #30363d;
    padding: 12px;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1rem;
}

.UpMaInputGroup input:focus, 
.UpMaInputGroup textarea:focus {
    outline: none;
    border-color: #4FF7FF;
    box-shadow: 0 0 10px rgba(79, 247, 255, 0.2);
}

.UpMaCheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.UpMaCheckboxGroup a {
    color: #4FF7FF;
}

.UpMaSubmitBtn {
    background: #4FF7FF;
    color: #07090C;
    border: none;
    padding: 18px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.UpMaSubmitBtn:hover {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(79, 247, 255, 0.5);
}

/* Footer */
.UpMaFooterMain {
    padding: 60px 0;
    border-top: 1px solid #30363d;
    background: #0d1117;
}

.UpMaFooterContent {
    text-align: center;
}

.UpMaFooterBrand {
    font-weight: bold;
    margin-bottom: 15px;
}

.UpMaFooterContact, 
.UpMaFooterLocation {
    margin-bottom: 10px;
    color: #8b949e;
    font-size: 0.9rem;
}

.UpMaFooterContact a {
    color: #4FF7FF;
    text-decoration: none;
}

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

.UpMaFooterLinks a {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.UpMaFooterLinks a:hover {
    color: #4FF7FF;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .UpMaGridHero {
        flex-direction: column;
        text-align: center;
    }
    .UpMaMainTitle {
        font-size: 2.5rem;
    }
    .UpMaPricingGrid {
        grid-template-columns: 1fr;
    }
    .UpMaPriceCardActive {
        transform: scale(1);
    }
    .UpMaAudienceGrid {
        grid-template-columns: 1fr 1fr;
    }
    .UpMaTextGrid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .UpMaBurgerBtn {
        display: flex;
    }
    .UpMaNavLinks {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #07090C;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #30363d;
    }
    .UpMaMenuInput:checked ~ .UpMaNavLinks {
        display: flex;
    }
    .UpMaAudienceGrid {
        grid-template-columns: 1fr;
    }
    .UpMaCheckList {
        grid-template-columns: 1fr;
    }
    .UpMaFloatingQuote {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
}