/*
    General Styles for Veltrunaxi — Спокійний темп
    Theme: Futuristic Void-Violet
    Background: #0B0020
    Primary Buttons: #B98CFF (text: white), hover: UV glow
    Secondary Buttons: Transparent, UV-frame
    Decor: UV-arrows, glitch lines, light arcs
*/

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #e0e0e0; /* Light grey for general text */
    background-color: #0B0020; /* Deep violet-black void background */
    overflow-x: hidden; /* Prevent horizontal scroll due to potential decorative elements */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: #00ffe0; /* UV accent color for links */
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover, a:focus {
    color: #B98CFF; /* Primary button color on hover for general links */
    text-shadow: 0 0 5px rgba(185, 140, 255, 0.7);
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    font-weight: 700;
    color: #ffffff; /* White for headings */
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    list-style: none;
    margin-bottom: 1rem;
}

section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden; /* Contain section-specific decorative elements */
}

/* --- Global Utility Classes --- */
.veltrunaxiGlobalContainerMain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1; /* Ensure content is above background decorations */
}

.veltrunaxiButtonPrimaryMain {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #B98CFF; /* Primary button color */
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    text-align: center;
    box-shadow: 0 0 10px rgba(185, 140, 255, 0); /* Initial transparent shadow */
}

.veltrunaxiButtonPrimaryMain:hover,
.veltrunaxiButtonPrimaryMain:focus {
    background-color: #9A6EDF; /* Slightly darker violet on hover */
    box-shadow: 0 0 20px rgba(185, 140, 255, 0.8), 0 0 30px rgba(0, 255, 224, 0.4); /* UV glow on hover */
    transform: translateY(-2px);
    outline: none;
}

.veltrunaxiButtonSecondaryOutline {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #B98CFF; /* UV frame color */
    font-weight: 700;
    border: 2px solid #00ffe0; /* UV frame */
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 255, 224, 0);
}

.veltrunaxiButtonSecondaryOutline:hover,
.veltrunaxiButtonSecondaryOutline:focus {
    background-color: rgba(0, 255, 224, 0.1);
    color: #ffffff;
    border-color: #B98CFF;
    box-shadow: 0 0 15px rgba(0, 255, 224, 0.7), 0 0 25px rgba(185, 140, 255, 0.4);
    transform: translateY(-2px);
    outline: none;
}

/* --- Header Styles --- */
.veltrunaxiHeaderWrapperGlob {
    background-color: rgba(0, 0, 0, 0.7); /* Dark header with transparency */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #00ffe0; /* UV-light strip */
    box-shadow: 0 2px 15px rgba(0, 255, 224, 0.3);
}

.veltrunaxiHeaderWrapperGlob .veltrunaxiGlobalContainerMain {
    max-width: 1680px;
}

.veltrunaxiHeaderContentAlign {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
}

.veltrunaxiLogoTextElement {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffe0; /* UV accent for logo */
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    padding: 0.5rem 0; /* Add padding for visual spacing */
    pointer-events: none; /* Make logo not clickable */
    white-space: nowrap;
    flex-shrink: 0;
}

/* Burger Menu - Hidden Checkbox */
.veltrunaxiNavBurgerInputCheckboxHidden {
    display: none;
}

/* Burger Icon */
.veltrunaxiNavBurgerIconToggle {
    display: none; /* Hidden by default on desktop */
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 101; /* Ensure burger is above menu for closing */
}

.veltrunaxiNavBurgerIconToggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #00ffe0;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.veltrunaxiBurgerLineTop {
    top: 0;
}

.veltrunaxiBurgerLineMiddle {
    top: 50%;
    transform: translateY(-50%);
}

.veltrunaxiBurgerLineBottom {
    bottom: 0;
}

/* Burger Animation on Click */
.veltrunaxiNavBurgerInputCheckboxHidden:checked ~ .veltrunaxiNavBurgerIconToggle .veltrunaxiBurgerLineTop {
    transform: translateY(9px) rotate(45deg);
}

.veltrunaxiNavBurgerInputCheckboxHidden:checked ~ .veltrunaxiNavBurgerIconToggle .veltrunaxiBurgerLineMiddle {
    opacity: 0;
}

.veltrunaxiNavBurgerInputCheckboxHidden:checked ~ .veltrunaxiNavBurgerIconToggle .veltrunaxiBurgerLineBottom {
    transform: translateY(-9px) rotate(-45deg);
}

/* Navigation Menu */
.veltrunaxiNavMenuLinksOuter {
    transition: all 0.3s ease-in-out;
    margin-left: auto;
    min-width: 0;
}

.veltrunaxiNavMenuItemsList {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.veltrunaxiNavLinkAnchorLink {
    color: #e0e0e0;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.45rem 0.5rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.veltrunaxiNavLinkAnchorLink::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
   
    transform: translateX(-101%);
    transition: transform 0.3s ease-in-out;
}

.veltrunaxiNavLinkAnchorLink:hover::before {
    transform: translateX(0);
}

/* --- Hero Section (БЛОК 1) --- */
.heroSectionWrapperVeltrunaxi {
    background-color: #0B0020;
    padding-top: 8rem;
    padding-bottom: 8rem;
    position: relative;
    overflow: hidden;
}

.heroContentFlexContainerVlrt {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.heroImageContainerVisual {
    flex: 1;
    min-width: 300px;
    position: relative;
    padding: 1.5rem;
    border: 1px solid rgba(0, 255, 224, 0.3); /* UV frame for image */
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 255, 224, 0.2);
}

.heroImageElementAbstract {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.heroTextBlockContentArea {
    flex: 1;
    min-width: 300px;
}

.heroTitleMainHeadingH1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #00ffe0; /* UV accent for H1 */
    text-shadow: 0 0 15px rgba(0, 255, 224, 0.5);
}

.heroSubtitleSupportingText {
    font-size: 1.5rem;
    color: #B98CFF;
    margin-bottom: 1.5rem;
}

.heroParagraphIntroductory,
.heroParagraphSecondaryDesc {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #c9c9c9;
}

.heroCallToActionWrapper {
    margin-top: 2rem;
}

/* Hero Decorative Arcs */
.heroDecorativeArcBottomLeft,
.heroDecorativeArcTopRight {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid rgba(185, 140, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

.heroDecorativeArcBottomLeft {
    bottom: -150px;
    left: -150px;
    border-top-color: transparent;
    border-right-color: transparent;
    transform: rotate(45deg);
}

.heroDecorativeArcTopRight {
    top: -150px;
    right: -150px;
    border-bottom-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
}


/* --- Practice Word Section (БЛОК 4) --- */
.veltrunaxiPracticeWordSection {
    background-color: #11042B; /* Slightly lighter violet-black */
    padding: 6rem 0;
    position: relative;
}

.practiceWordSectionHeadingH2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #B98CFF;
    text-shadow: 0 0 10px rgba(185, 140, 255, 0.5);
}

.practiceWordQuoteContainer {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    background-color: rgba(185, 140, 255, 0.1); /* Light violet transparent background */
    border-left: 5px solid #00ffe0; /* UV accent line */
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 224, 0.1);
}

.practiceWordMainQuoteBlock {
    font-size: 1.4rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.practiceWordQuoteAuthorSignature {
    text-align: right;
    font-size: 1.1rem;
    color: #B98CFF;
    font-weight: 700;
}

.practiceWordAuthorTitle {
    font-weight: 400;
    color: #00ffe0;
}

.practiceWordDisclosureList {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px dashed rgba(0, 255, 224, 0.3); /* Glitch line decor */
    padding-top: 2rem;
}

.practiceWordDisclosureItem {
    background-color: rgba(185, 140, 255, 0.05); /* Lighter transparency */
    border: 1px solid rgba(185, 140, 255, 0.2);
    border-radius: 6px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.practiceWordDisclosureItem[open] {
    border-color: #00ffe0; /* UV accent when open */
    box-shadow: 0 0 15px rgba(0, 255, 224, 0.2);
}

.practiceWordDisclosureSummary {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    position: relative;
    outline: none;
    transition: color 0.3s ease;
    list-style: none; /* Hide default triangle */
}

.practiceWordDisclosureSummary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.practiceWordDisclosureSummary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #00ffe0;
    transition: transform 0.3s ease;
}

.practiceWordDisclosureItem[open] .practiceWordDisclosureSummary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.practiceWordDisclosureSummary:hover {
    color: #B98CFF;
}

.practiceWordDisclosureContent {
    padding: 0.5rem 1.5rem 1.5rem;
    font-size: 1rem;
    color: #c9c9c9;
    border-top: 1px solid rgba(185, 140, 255, 0.1);
}

/* --- Service Packages Section (БЛОК «Пакети послуг») --- */
.veltrunaxiServicePackagesSection {
    background-color: #0B0020;
    padding: 6rem 0;
    position: relative;
}

.servicePackagesHeadingH2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #00ffe0;
    text-shadow: 0 0 10px rgba(0, 255, 224, 0.5);
}

.servicePackagesSubtitleText {
    text-align: center;
    font-size: 1.15rem;
    color: #c9c9c9;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.servicePackagesGridContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    padding: 2.5rem;
    border: 2px solid #B98CFF; /* Lines around the block */
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.3);
}

.servicePackageCardItemBorder {
    background-color: rgba(185, 140, 255, 0.08); /* Card background with transparency */
    border: 1px solid rgba(0, 255, 224, 0.3); /* UV frame for cards */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 224, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.servicePackageCardItemBorder:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 255, 224, 0.3), 0 0 40px rgba(185, 140, 255, 0.2);
}

.servicePackageCardInnerContent {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.servicePackageCardTitleH3 {
    font-size: 1.8rem;
    color: #B98CFF;
    margin-bottom: 1rem;
    text-align: center;
}

.servicePackageCardPriceWrapper {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.8rem 0;
    background-color: rgba(0, 255, 224, 0.1); /* UV accent background for price */
    border-radius: 5px;
}

.servicePackageCardOldPrice {
    font-size: 1.2rem;
    color: #999999;
    text-decoration: line-through;
    margin-right: 0.8rem;
}

.servicePackageCardNewPrice {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffe0; /* UV accent for new price */
    text-shadow: 0 0 8px rgba(0, 255, 224, 0.7);
}

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

.servicePackageFeatureItem {
    font-size: 1rem;
    color: #c9c9c9;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
}

.servicePackageFeatureItem::before {
    content: '›'; /* UV arrow decor */
    color: #00ffe0;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
    font-weight: 700;
}

.servicePackageActionButton {
    width: 100%;
    margin-top: auto; /* Push button to bottom */
}


/* --- Benefits Section (БЛОК 3) --- */
.veltrunaxiBenefitsSectionWrap {
    background-color: #11042B; /* Slightly lighter violet-black */
    padding: 6rem 0;
    position: relative;
}

.benefitsSectionHeadingH2 {
    text-align: center;
    margin-bottom: 3.5rem;
    color: #B98CFF;
    text-shadow: 0 0 10px rgba(185, 140, 255, 0.5);
}

.benefitsContentLayoutReverse {
    display: flex;
    flex-direction: row-reverse; /* Text left, image right */
    align-items: center;
    gap: 4rem;
}

.benefitsTextContentBlock {
    flex: 1;
    min-width: 300px;
}

.benefitsIntroParagraph {
    font-size: 1.15rem;
    color: #c9c9c9;
    margin-bottom: 2rem;
}

.benefitsFeaturesListElements {
    list-style: none;
    display: grid;
    gap: 1.5rem;
}

.benefitsListItem {
    background-color: rgba(0, 255, 224, 0.08); /* UV accent background */
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #00ffe0; /* UV line decor */
    box-shadow: 0 0 10px rgba(0, 255, 224, 0.1);
}

.benefitsListItemTitleH3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.benefitsListItemDescription {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

.benefitsImageContainerVisual {
    flex: 1;
    min-width: 300px;
    position: relative;
    padding: 1.5rem;
    border: 1px solid rgba(185, 140, 255, 0.3); /* Primary color frame */
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(185, 140, 255, 0.2);
}

.benefitsImageElementFluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* --- Target Audience Section (БЛОК 2) --- */
.veltrunaxiTargetAudienceSection {
    background-color: #0B0020;
    padding: 6rem 0;
    position: relative;
}

.targetAudienceHeadingH2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #00ffe0;
    text-shadow: 0 0 10px rgba(0, 255, 224, 0.5);
}

.targetAudienceIntroText {
    text-align: center;
    font-size: 1.15rem;
    color: #c9c9c9;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.targetAudienceListGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.targetAudienceListItemDecorated {
    background-color: rgba(185, 140, 255, 0.08);
    border: 1px solid rgba(185, 140, 255, 0.3);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(185, 140, 255, 0.1);
}

.targetAudienceListItemDecorated:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(185, 140, 255, 0.3), 0 0 30px rgba(0, 255, 224, 0.2);
}

/* Decorative lines for blocks */
.targetAudienceListItemDecorated::before,
.targetAudienceListItemDecorated::after {
    content: '';
    position: absolute;
    background-color: #00ffe0; /* UV accent lines */
    opacity: 0.4;
    transition: all 0.3s ease;
}

.targetAudienceListItemDecorated::before {
    width: 100%;
    height: 2px;
    top: 0;
    left: 0;
    transform: translateX(-100%);
}

.targetAudienceListItemDecorated::after {
    height: 100%;
    width: 2px;
    bottom: 0;
    right: 0;
    transform: translateY(100%);
}

.targetAudienceListItemDecorated:hover::before {
    transform: translateX(0);
}

.targetAudienceListItemDecorated:hover::after {
    transform: translateY(0);
}

.targetAudienceListItemInner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.targetAudienceListIcon {
    font-size: 2.5rem;
    line-height: 1;
    color: #00ffe0; /* UV accent for icons */
    flex-shrink: 0;
}

.targetAudienceListItemText {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* --- FAQ Section (БЛОК 5) --- */
.veltrunaxiFaqSectionWrapper {
    background-color: #11042B; /* Slightly lighter violet-black */
    padding: 6rem 0;
    position: relative;
}

.faqSectionHeadingH2 {
    text-align: center;
    margin-bottom: 3.5rem;
    color: #B98CFF;
    text-shadow: 0 0 10px rgba(185, 140, 255, 0.5);
}

.faqAccordionContainer {
    max-width: 900px;
    margin: 0 auto;
}

.faqAccordionItem {
    background-color: rgba(0, 255, 224, 0.05); /* UV transparent background */
    border: 1px solid rgba(0, 255, 224, 0.2);
    border-radius: 6px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faqAccordionItem[open] {
    border-color: #B98CFF; /* Primary accent when open */
    box-shadow: 0 0 15px rgba(185, 140, 255, 0.2);
}

.faqAccordionSummary {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    position: relative;
    outline: none;
    transition: color 0.3s ease;
    list-style: none; /* Hide default triangle */
}

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

.faqAccordionSummary::after {
    content: '›'; /* UV arrow decor */
    font-family: sans-serif; /* Ensure symbol displays consistently */
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg); /* Down arrow */
    font-size: 1.8rem;
    color: #00ffe0;
    transition: transform 0.3s ease;
}

.faqAccordionItem[open] .faqAccordionSummary::after {
    transform: translateY(-50%) rotate(-90deg); /* Up arrow when open */
}

.faqAccordionSummary:hover {
    color: #00ffe0;
}

.faqAccordionContent {
    padding: 0.5rem 1.5rem 1.5rem;
    font-size: 1rem;
    color: #c9c9c9;
    border-top: 1px solid rgba(0, 255, 224, 0.1);
}
.faqAccordionContent p {
    margin-bottom: 0; /* Remove margin from last paragraph in content */
}

/* --- Form Section (БЛОК 6) --- */
.veltrunaxiFormSectionMain {
    background-color: #0B0020;
    padding: 6rem 0;
    position: relative;
}

.formSectionHeadingH2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #B98CFF;
    text-shadow: 0 0 10px rgba(185, 140, 255, 0.5);
}

.formSectionSubheadingP {
    text-align: center;
    font-size: 1.15rem;
    color: #c9c9c9;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.veltrunaxiContactFormElement {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(185, 140, 255, 0.08); /* Transparent violet background */
    border: 1px solid rgba(0, 255, 224, 0.3); /* UV border */
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 0 25px rgba(0, 255, 224, 0.2);
}

.formInputGroupWrapper {
    margin-bottom: 1.5rem;
}

.formLabelForInput {
    display: block;
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.formTextInputField,
.formTextareaField {
    width: 100%;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.6); /* Darker input background */
    border: 1px solid rgba(185, 140, 255, 0.4); /* Violet border */
    border-radius: 5px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.formTextInputField:focus,
.formTextareaField:focus {
    border-color: #00ffe0; /* UV accent on focus */
    box-shadow: 0 0 10px rgba(0, 255, 224, 0.5);
    outline: none;
}

.formTextareaField {
    resize: vertical;
    min-height: 120px;
}

.formCheckboxGroupPolicy {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.formCheckboxInput {
    margin-right: 0.8rem;
    width: 18px;
    height: 18px;
    accent-color: #B98CFF; /* Violet accent for checkbox */
}

.formCheckboxLabelPolicy {
    color: #c9c9c9;
}

.formPolicyLink {
    color: #00ffe0;
    text-decoration: underline;
}

.formPolicyLink:hover {
    color: #B98CFF;
    text-shadow: 0 0 5px rgba(185, 140, 255, 0.7);
}

.formSubmitButtonCall {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

/* --- Additional Text Sections --- */
.veltrunaxiExtraTextSectionA,
.veltrunaxiExtraTextSectionB,
.veltrunaxiExtraTextSectionC {
    background-color: #11042B; /* Alternating background */
    padding: 6rem 0;
    position: relative;
    border-top: 1px dashed rgba(0, 255, 224, 0.2); /* Subtle glitch line */
}
.veltrunaxiExtraTextSectionB {
    background-color: #0B0020; /* Alternating background */
}

.extraTextSectionHeadingH2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #B98CFF;
    text-shadow: 0 0 10px rgba(185, 140, 255, 0.5);
}
.veltrunaxiExtraTextSectionB .extraTextSectionHeadingH2 {
    color: #00ffe0;
    text-shadow: 0 0 10px rgba(0, 255, 224, 0.5);
}

.extraTextSectionSubheadingH3 {
    color: #00ffe0;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 224, 0.3);
    padding-bottom: 0.5rem;
}

.extraTextSectionParagraph {
    font-size: 1.1rem;
    color: #c9c9c9;
    margin-bottom: 1.5rem;
}

.extraTextSectionList,
.extraTextSectionOrderedList {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.extraTextSectionListItem {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.extraTextSectionList .extraTextSectionListItem::before {
    content: '•';
    color: #B98CFF;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}
.extraTextSectionOrderedList .extraTextSectionListItem {
    counter-increment: list-counter;
}
.extraTextSectionOrderedList .extraTextSectionListItem::before {
    content: counter(list-counter) ".";
    color: #00ffe0;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}


/* --- Footer Styles --- */
.veltrunaxiFooterWrapperGlobal {
    background-color: rgba(0, 0, 0, 0.8); /* Darker footer */
    padding: 3rem 0;
    text-align: center;
    color: #c9c9c9;
    border-top: 2px solid #B98CFF; /* Primary light strip */
    box-shadow: 0 -2px 15px rgba(185, 140, 255, 0.3);
    margin-top: auto; /* Push footer to bottom */
}

.veltrunaxiFooterMainContent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.veltrunaxiFooterCopyrightText {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.veltrunaxiFooterContactInfo {
    font-size: 1rem;
    margin-bottom: 0;
}

.veltrunaxiFooterContactLink {
    color: #00ffe0;
    text-decoration: underline;
}

.veltrunaxiFooterPolicyLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.veltrunaxiFooterLinkItem {
    font-size: 0.9rem;
    color: #c9c9c9;
}

.veltrunaxiFooterLinkItem:hover {
    color: #B98CFF;
    text-shadow: 0 0 5px rgba(185, 140, 255, 0.7);
}


/* --- Responsive Styles (Media Queries) --- */

/* Compact desktop where nav is still horizontal */
@media (max-width: 1280px) {
    .veltrunaxiLogoTextElement {
        font-size: 1.45rem;
    }

    .veltrunaxiNavMenuItemsList {
        gap: 0.4rem;
    }

    .veltrunaxiNavLinkAnchorLink {
        font-size: 0.88rem;
        padding: 0.35rem 0.35rem;
    }
}

/* Tablet & Mobile (Max 992px) */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    section {
        padding: 4rem 0;
    }

    /* Header */
    .veltrunaxiNavBurgerIconToggle {
        display: block; /* Show burger on smaller screens */
    }

    .veltrunaxiNavMenuLinksOuter {
        position: fixed;
        top: 0;
        right: -100%; /* Initially off-screen */
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: #0B0020;
        padding-top: 5rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 99;
        display: flex;
        flex-direction: column;
    }

    .veltrunaxiNavBurgerInputCheckboxHidden:checked ~ .veltrunaxiNavMenuLinksOuter {
        right: 0; /* Slide in */
    }

    .veltrunaxiNavMenuItemsList {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .veltrunaxiNavLinkAnchorLink {
        font-size: 1.3rem;
        padding: 0.8rem 0;
        width: 100%;
        text-align: center;
    }
    .veltrunaxiNavLinkAnchorLink::before {
        height: 2px;
        background-color: #00ffe0;
    }

    /* Hero Section */
    .heroContentFlexContainerVlrt {
        flex-direction: column; /* Stack columns on mobile */
        text-align: center;
    }

    .heroTitleMainHeadingH1 {
        font-size: 2.8rem;
    }

    .heroSubtitleSupportingText {
        font-size: 1.2rem;
    }

    .heroImageContainerVisual,
    .heroTextBlockContentArea {
        min-width: unset;
        width: 100%;
    }

    /* Benefits Section */
    .benefitsContentLayoutReverse {
        flex-direction: column; /* Stack columns on mobile */
    }
    .benefitsImageContainerVisual,
    .benefitsTextContentBlock {
        min-width: unset;
        width: 100%;
    }

    /* Packages Grid */
    .servicePackagesGridContainer {
        padding: 1.5rem;
    }
    .servicePackageCardNewPrice {
        font-size: 2rem;
    }

    /* FAQ and Form */
    .faqAccordionSummary, .practiceWordDisclosureSummary {
        font-size: 1.1rem;
    }
    .formTextInputField, .formTextareaField {
        padding: 0.8rem;
    }
    .formSubmitButtonCall {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Small Mobile (Max 576px) */
@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 1.3rem;
    }
    section {
        padding: 3rem 0;
    }
    .veltrunaxiGlobalContainerMain {
        padding: 0 1rem;
    }

    .veltrunaxiLogoTextElement {
        font-size: 1.4rem;
    }

    .heroTitleMainHeadingH1 {
        font-size: 2.2rem;
    }
    .heroSubtitleSupportingText {
        font-size: 1rem;
    }
    .heroParagraphIntroductory,
    .heroParagraphSecondaryDesc {
        font-size: 1rem;
    }

    .practiceWordMainQuoteBlock {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    .practiceWordQuoteContainer {
        padding: 1.5rem;
    }

    .servicePackagesGridContainer {
        padding: 1rem;
        border-width: 1px;
    }
    .servicePackageCardInnerContent {
        padding: 1.5rem;
    }
    .servicePackageCardTitleH3 {
        font-size: 1.5rem;
    }
    .servicePackageCardNewPrice {
        font-size: 1.8rem;
    }
    .servicePackageFeatureItem {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }
    .servicePackageFeatureItem::before {
        font-size: 1.2rem;
    }

    .benefitsIntroParagraph {
        font-size: 1rem;
    }
    .benefitsListItemTitleH3 {
        font-size: 1.2rem;
    }
    .benefitsListItemDescription {
        font-size: 0.9rem;
    }

    .targetAudienceListGrid {
        grid-template-columns: 1fr; /* Single column on smallest screens */
    }
    .targetAudienceListItemDecorated {
        padding: 1.5rem;
    }
    .targetAudienceListIcon {
        font-size: 2rem;
    }
    .targetAudienceListItemText {
        font-size: 1rem;
    }

    .faqAccordionSummary, .practiceWordDisclosureSummary {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }
    .faqAccordionSummary::after, .practiceWordDisclosureSummary::after {
        font-size: 1.5rem;
        right: 1.2rem;
    }
    .faqAccordionContent, .practiceWordDisclosureContent {
        font-size: 0.9rem;
        padding: 0.5rem 1.2rem 1.2rem;
    }

    .veltrunaxiContactFormElement {
        padding: 1.5rem;
    }
    .formLabelForInput {
        font-size: 0.9rem;
    }
    .formTextInputField, .formTextareaField {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    .formCheckboxGroupPolicy {
        font-size: 0.85rem;
    }
    .formSubmitButtonCall {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .extraTextSectionParagraph,
    .extraTextSectionListItem {
        font-size: 1rem;
    }

    .veltrunaxiFooterPolicyLinks {
        flex-direction: column;
        gap: 0.8rem;
    }
    .veltrunaxiFooterCopyrightText,
    .veltrunaxiFooterContactInfo,
    .veltrunaxiFooterLinkItem {
        font-size: 0.85rem;
    }
}
