/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.UroMainBodyWrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0f172a; /* Темний фон з палітри */
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* COLORS & VARIABLES */
:root {
    --primary-cyan: #22d3ee;
    --accent-mint: #a7f3d0;
    --dark-bg: #0f172a;
    --text-light: #e2e8f0;
    --glass-bg: rgba(34, 211, 238, 0.05);
}

/* ANIMATED TOP BAR */
.UroTopAnimatedGradientBar {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #0f172a, #22d3ee, #a7f3d0, #0f172a);
    background-size: 300% 100%;
    animation: UroGradientShiftAnim 6s ease infinite;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
}

@keyframes UroGradientShiftAnim {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* HEADER */
.UroHeaderContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 4px;
    z-index: 1000;
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
}

.UroHeaderLogoText {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.UroNavigationMenuLinks {
    display: flex;
    gap: 25px;
}

.UroNavLinkItemElement {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.UroNavLinkItemElement:hover {
    color: var(--primary-cyan);
}

/* MOBILE MENU BURGER (Pure CSS) */
.UroMenuCheckboxInput {
    display: none;
}

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

.UroBurgerButtonIcon span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-cyan);
    transition: 0.3s;
}

/* HERO SECTION */
.UroHeroBlockContainer {
    padding: 100px 5% 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.UroHeroContentWrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.UroHeroTextColumnPart {
    flex: 1 1 500px;
}

.UroHeroImageColumnPart {
    flex: 1 1 400px;
}

.UroHeroMainHeadlineTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.UroHeroSubheadlineText {
    font-size: 1.25rem;
    color: var(--primary-cyan);
    margin-bottom: 20px;
    font-weight: 600;
}

.UroHeroDescriptionText {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.85;
}

.UroHeroButtonCtaContainer {
    margin-bottom: 50px;
}

.UroHeroCtaActionButton {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}

.UroHeroCtaActionButton:hover {
    background: var(--primary-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.6);
}

.UroHeroFeaturesGridRow {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.UroHeroSmallFeatureCard {
    background: var(--glass-bg);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(34, 211, 238, 0.1);
}

.UroHeroFeatureIconBox {
    font-size: 1.5rem;
}

.UroHeroMainVisualImage {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    object-fit: cover;
}

/* SECTION TITLES */
.UroSectionHeaderCentering {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.UroSectionTitleHeading {
    font-size: 2.5rem;
    color: var(--accent-mint);
    margin-bottom: 15px;
}

.UroSectionTitleUnderline {
    width: 60px;
    height: 3px;
    background: var(--primary-cyan);
    margin: 0 auto;
}

/* FAQ SECTION */
.UroFaqBlockContainer {
    padding: 80px 5%;
}

.UroFaqAccordionWrapperList {
    max-width: 850px;
    margin: 0 auto;
}

.UroFaqAccordionItemDetail {
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-cyan);
    transition: background 0.3s;
}

.UroFaqAccordionItemDetail[open] {
    background: rgba(255, 255, 255, 0.07);
}

.UroFaqAccordionSummaryTitle {
    padding: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.UroFaqAccordionSummaryTitle span {
    color: var(--primary-cyan);
    font-family: monospace;
}

.UroFaqAccordionContentText {
    padding: 0 20px 20px 55px;
    opacity: 0.9;
}

/* AUDIENCE SECTION */
.UroAudienceBlockContainer {
    padding: 80px 5%;
    background: linear-gradient(180deg, #0f172a 0%, #16213e 100%);
}

.UroAudienceGridContainerBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.UroAudienceCardItemElement {
    flex: 1 1 300px;
    max-width: 380px;
    background: var(--glass-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(167, 243, 208, 0.1);
    transition: transform 0.3s;
}

.UroAudienceCardItemElement:hover {
    transform: translateY(-10px);
    border-color: var(--accent-mint);
}

.UroAudienceIconWrapper {
    font-size: 3rem;
    margin-bottom: 20px;
}

.UroAudienceCardSubTitle {
    color: var(--primary-cyan);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* PRICES SECTION */
.UroPricesBlockContainer {
    padding: 80px 5%;
}

.UroPricesFlexGridContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.UroPriceCardItemColumn {
    flex: 1 1 350px;
    max-width: 400px;
}

.UroPriceCardInnerContent {
    background: #1e293b;
    padding: 40px;
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.UroPriceCardHighlightedSpecial .UroPriceCardInnerContent {
    border: 2px solid var(--primary-cyan);
    transform: scale(1.05);
    z-index: 2;
    background: #1e293b;
}

.UroPricePopularBadgeLabel {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-cyan);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.UroPriceCardMainTitle {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--accent-mint);
}

.UroPriceCardTargetAudience {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 25px;
}

.UroPriceValueTextDisplay {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.UroPriceFeaturesListItems {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.UroPriceFeaturesListItems li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.UroPriceFeaturesListItems li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
}

.UroPriceCardOrderButton {
    display: block;
    text-align: center;
    padding: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.UroPriceCardOrderButton:hover {
    background: var(--primary-cyan);
    color: #000;
}

/* EXPERT SECTION */
.UroExpertBlockContainer {
    padding: 100px 5%;
    background: rgba(34, 211, 238, 0.02);
    text-align: center;
}

.UroExpertInnerContentBox {
    max-width: 700px;
    margin: 0 auto;
}

.UroExpertImagePhotoBox {
    margin-bottom: 30px;
}

.UroExpertAvatarVisual {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary-cyan);
    padding: 5px;
}

.UroExpertQuoteTextElement {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.4;
    position: relative;
}

.UroExpertSignatureNameText {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-cyan);
}

.UroExpertJobTitleLabel {
    opacity: 0.6;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* BENEFITS SECTION */
.UroBenefitsBlockContainer {
    padding: 80px 5%;
}

.UroBenefitsLayoutSplitFlex {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.UroBenefitsTextSideContent {
    flex: 1 1 500px;
}

.UroBenefitsImageSidePart {
    flex: 1 1 400px;
}

.UroBenefitsCardsGridRow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.UroBenefitSoftShadowCard {
    background: #1e293b;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-top: 3px solid var(--accent-mint);
}

.UroBenefitCardHeaderTitle {
    color: var(--primary-cyan);
    margin-bottom: 10px;
}

.UroBenefitsSideImageElement {
    width: 100%;
    border-radius: 20px;
}

/* EXTRA TEXT SECTIONS */
.UroExtraTextSectionBlock {
    padding: 80px 5%;
}

.UroExtraTextSectionBlock.bg-alt {
    background: rgba(255,255,255,0.02);
}

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

.UroParagraphTextContent {
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.UroTextHighlightColor {
    color: var(--primary-cyan);
    font-weight: 600;
}

.UroCustomBulletListContainer {
    margin: 30px 0;
    padding-left: 20px;
}

.UroCustomBulletListContainer li {
    margin-bottom: 15px;
    color: var(--accent-mint);
}

.UroInsetTextQuoteBox {
    padding: 30px;
    border-left: 5px solid var(--primary-cyan);
    background: var(--glass-bg);
    font-size: 1.3rem;
    margin: 40px 0;
    font-style: italic;
}

/* FORM SECTION */
.UroFormBlockContainer {
    padding: 80px 5%;
}

.UroFormInnerWrapperCard {
    max-width: 600px;
    margin: 0 auto;
    background: #1e293b;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 0 50px rgba(34, 211, 238, 0.1);
}

.UroFormMainHeadlineTitle {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
}

.UroFormSubHeadlineText {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.7;
}

.UroFormFieldGroupBox {
    margin-bottom: 20px;
}

.UroFormFieldLabelText {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--primary-cyan);
}

.UroFormTextInputField, 
.UroFormTextareaInputField {
    width: 100%;
    padding: 15px;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
}

.UroFormTextInputField:focus, 
.UroFormTextareaInputField:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.2);
}

.UroFormCheckboxGroupBox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.UroFormCheckboxElement {
    margin-top: 4px;
}

.UroFormSubmitActionButton {
    width: 100%;
    padding: 18px;
    background: var(--primary-cyan);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.UroFormSubmitActionButton:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
    transform: translateY(-2px);
}

/* FOOTER */
.UroFooterMainContainer {
    background: #070b14;
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.UroFooterContentInner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.UroFooterLogoBrand {
    font-size: 1.8rem;
    color: var(--primary-cyan);
    font-weight: 900;
    margin-bottom: 20px;
}

.UroFooterCopyrightText {
    margin-bottom: 10px;
    opacity: 0.6;
}

.UroFooterContactEmail {
    margin-bottom: 30px;
}

.UroFooterContactEmail a {
    color: var(--primary-cyan);
    text-decoration: none;
}

.UroFooterDisclaimerNote {
    font-size: 0.8rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.4;
}

.UroFooterLinksNavRow {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.UroFooterNavLinkItem {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.UroFooterNavLinkItem:hover {
    opacity: 1;
    color: var(--primary-cyan);
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .UroHeroMainHeadlineTitle { font-size: 2.5rem; }
    .UroHeroContentWrapper { text-align: center; justify-content: center; }
    .UroHeroFeaturesGridRow { justify-content: center; }
    .UroPriceCardHighlightedSpecial { transform: scale(1); }
}

@media (max-width: 768px) {
    .UroBurgerButtonIcon { display: flex; }
    .UroNavigationMenuLinks {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        flex-direction: column;
        padding: 30px;
        text-align: center;
        border-bottom: 1px solid var(--primary-cyan);
    }
    .UroMenuCheckboxInput:checked ~ .UroNavigationMenuLinks {
        display: flex;
    }
    .UroMenuCheckboxInput:checked ~ .UroBurgerButtonIcon span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .UroMenuCheckboxInput:checked ~ .UroBurgerButtonIcon span:nth-child(2) { opacity: 0; }
    .UroMenuCheckboxInput:checked ~ .UroBurgerButtonIcon span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }
    
    .UroHeroBlockContainer { padding-top: 60px; }
    .UroSectionTitleHeading { font-size: 2rem; }
}