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

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

body.VokejaguPrimeMainBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #04101A;
    background: linear-gradient(135deg, #04101A 0%, #021720 100%);
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    color: #52E1FF;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

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

.VokejaguPrimeHeaderContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.VokejaguPrimeLogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #52E1FF;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(82, 225, 255, 0.5);
}

.VokejaguPrimeNavbar {
    display: flex;
}

.VokejaguPrimeMenuList {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.VokejaguPrimeMenuLink {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.VokejaguPrimeMenuLink:hover {
    color: #52E1FF;
}

.VokejaguPrimeMenuLink::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #52E1FF;
    transition: 0.3s;
}

.VokejaguPrimeMenuLink:hover::after {
    width: 100%;
}

.VokejaguPrimeHeaderGradientLine {
    height: 3px;
    background: linear-gradient(90deg, transparent, #52E1FF, transparent);
    width: 100%;
}

/* Mobile Menu Toggle (No JS) */
.VokejaguPrimeMobileMenuInput {
    display: none;
}

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

.VokejaguPrimeMobileMenuIcon span {
    width: 25px;
    height: 3px;
    background: #52E1FF;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.VokejaguPrimeHeroSection {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.VokejaguPrimeHeroWrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.VokejaguPrimeHeroTextContent {
    flex: 1;
}

.VokejaguPrimeHeroImageBlock {
    flex: 1;
    display: flex;
    justify-content: center;
}

.VokejaguPrimeHeroTitle {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(82, 225, 255, 0.3);
}

.VokejaguPrimeHeroSubtitle {
    font-size: 1.4rem;
    color: #a7f3d0;
    margin-bottom: 2rem;
}

.VokejaguPrimeHeroDescription {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.VokejaguPrimeHeroPicture {
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(82, 225, 255, 0.3);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.VokejaguPrimeMainButton {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #52E1FF;
    color: #04101A;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(82, 225, 255, 0.4);
    transform: translateY(0);
}

.VokejaguPrimeMainButton:hover {
    box-shadow: 0 0 25px rgba(82, 225, 255, 0.6);
    transform: translateY(-3px);
}

/* Section Common Styling */
.VokejaguPrimeSectionHeading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.VokejaguPrimeSectionLead {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #94a3b8;
    font-size: 1.1rem;
}

/* FAQ Section */
.VokejaguPrimeFaqSection {
    padding: 5rem 2rem;
    background: rgba(2, 23, 32, 0.5);
}

.VokejaguPrimeFaqList {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.VokejaguPrimeFaqCard {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(82, 225, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.VokejaguPrimeFaqSummary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.VokejaguPrimeFaqSummary:hover {
    background: rgba(82, 225, 255, 0.05);
    color: #52E1FF;
}

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

.VokejaguPrimeFaqSummary::after {
    content: '+';
    font-size: 1.5rem;
    color: #52E1FF;
}

.VokejaguPrimeFaqDetails[open] .VokejaguPrimeFaqSummary::after {
    content: '-';
}

.VokejaguPrimeFaqAnswer {
    padding: 0 1.5rem 1.5rem;
    color: #cbd5e1;
    border-top: 1px solid rgba(82, 225, 255, 0.1);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

/* Expert Section */
.VokejaguPrimeExpertSection {
    padding: 6rem 2rem;
}

.VokejaguPrimeExpertWrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.VokejaguPrimeExpertQuoteBlock {
    flex: 1;
    position: relative;
    padding-left: 2rem;
}

.VokejaguPrimeExpertLine {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #52E1FF, transparent);
}

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

.VokejaguPrimeExpertAuthor {
    font-weight: 700;
    color: #52E1FF;
    font-size: 1.1rem;
}

.VokejaguPrimeExpertImageBlock {
    flex: 1;
}

.VokejaguPrimeExpertPicture {
    width: 100%;
    border-radius: 12px;
    box-shadow: 20px 20px 0px rgba(82, 225, 255, 0.1);
}

/* Services/Prices Section */
.VokejaguPrimeServicesSection {
    padding: 5rem 2rem;
    background: rgba(15, 23, 42, 0.4);
}

.VokejaguPrimePricesGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.VokejaguPrimePriceItem {
    background: #0f172a;
    border: 1px solid rgba(82, 225, 255, 0.1);
    border-radius: 12px;
    padding: 3rem 2rem;
    flex: 1;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.VokejaguPrimePriceItem:hover {
    transform: translateY(-10px);
    border-color: #52E1FF;
}

.VokejaguPrimePriceBar {
    height: 6px;
    width: 80px;
    margin: 0 auto 2rem;
    border-radius: 3px;
}

.VokejaguPrimePriceBarCyan { background: #22d3ee; }
.VokejaguPrimePriceBarBlue { background: #3b82f6; }
.VokejaguPrimePriceBarPurple { background: #a855f7; }

.VokejaguPrimePriceTitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.VokejaguPrimePriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.VokejaguPrimePriceList {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.VokejaguPrimePriceList li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #94a3b8;
}

.VokejaguPrimePriceList li::before {
    content: '✓';
    color: #52E1FF;
    margin-right: 10px;
}

.VokejaguPrimePriceButton {
    display: block;
    padding: 1rem;
    border: 2px solid #52E1FF;
    color: #52E1FF;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.VokejaguPrimePriceButton:hover {
    background: #52E1FF;
    color: #04101A;
}

/* Info Sections */
.VokejaguPrimeInfoSection {
    padding: 4rem 2rem;
}

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

.VokejaguPrimeInfoText {
    font-size: 1.15rem;
    color: #cbd5e1;
}

.VokejaguPrimeKeyMind {
    background: rgba(34, 211, 238, 0.1);
    border-left: 4px solid #22d3ee;
    padding: 1.5rem;
    margin: 2rem 0;
    color: #e2e8f0;
}

.VokejaguPrimeInfoList {
    list-style: none;
    margin: 2rem 0;
}

.VokejaguPrimeInfoList li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.VokejaguPrimeInfoList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #52E1FF;
}

/* Regular Practice Section */
.VokejaguPrimeRegularSection {
    padding: 6rem 2rem;
    background: rgba(2, 23, 32, 0.4);
}

.VokejaguPrimeRegularWrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.VokejaguPrimeRegularText {
    flex: 1.5;
}

.VokejaguPrimeRegularImage {
    flex: 1;
}

.VokejaguPrimeRegularPicture {
    width: 100%;
    border-radius: 50% 50% 0 50%;
    border: 2px solid #52E1FF;
}

.VokejaguPrimeBenefitsGrid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.VokejaguPrimeBenefitColumn {
    flex: 1;
}

.VokejaguPrimeSimpleList {
    list-style: none;
}

.VokejaguPrimeSimpleList li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.VokejaguPrimeSimpleList li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #52E1FF;
    box-shadow: 0 0 10px #52E1FF;
}

/* Audience Section */
.VokejaguPrimeAudienceSection {
    padding: 6rem 2rem;
}

.VokejaguPrimeAudienceWrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.VokejaguPrimeAudienceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.VokejaguPrimeAudienceItem {
    flex: 1 1 350px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    border-radius: 8px;
}

.VokejaguPrimeAudienceIcon {
    font-size: 2rem;
    color: #52E1FF;
}

.VokejaguPrimeAudienceTitle {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.VokejaguPrimeAudienceText {
    margin: 0;
    color: #94a3b8;
}

/* Contact/Form Section */
.VokejaguPrimeContactSection {
    padding: 6rem 2rem;
    background: #020b12;
}

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

.VokejaguPrimeFormBlock {
    background: #0f172a;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.VokejaguPrimeFormGroup {
    margin-bottom: 1.5rem;
}

.VokejaguPrimeLabel {
    display: block;
    margin-bottom: 0.5rem;
    color: #52E1FF;
    font-weight: 600;
}

.VokejaguPrimeInput, .VokejaguPrimeTextarea {
    width: 100%;
    padding: 1rem;
    background: #04101A;
    border: 1px solid rgba(82, 225, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

.VokejaguPrimeInput:focus, .VokejaguPrimeTextarea:focus {
    outline: none;
    border-color: #52E1FF;
    box-shadow: 0 0 10px rgba(82, 225, 255, 0.2);
}

.VokejaguPrimeTextarea {
    height: 150px;
    resize: vertical;
}

.VokejaguPrimeCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.VokejaguPrimeCheckbox {
    margin-top: 0.3rem;
    cursor: pointer;
}

.VokejaguPrimeCheckboxLabel {
    font-size: 0.9rem;
    color: #94a3b8;
}

.VokejaguPrimeCheckboxLabel a {
    color: #52E1FF;
    text-decoration: underline;
}

.VokejaguPrimeSubmitButton {
    width: 100%;
    padding: 1.2rem;
    background: #52E1FF;
    border: none;
    border-radius: 4px;
    color: #04101A;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.VokejaguPrimeSubmitButton:hover {
    background: #fff;
    box-shadow: 0 0 20px #fff;
}

/* Footer Section */
.VokejaguPrimeFooter {
    padding: 4rem 2rem;
    background: #01080d;
    border-top: 1px solid rgba(82, 225, 255, 0.1);
}

.VokejaguPrimeFooterContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.VokejaguPrimeFooterBrand {
    flex: 1;
}

.VokejaguPrimeFooterCopyright {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.VokejaguPrimeFooterEmail, .VokejaguPrimeFooterPhone {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.VokejaguPrimeFooterEmail a {
    color: #52E1FF;
}

.VokejaguPrimeFooterLinks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}

.VokejaguPrimeFooterLink {
    color: #64748b;
    font-size: 0.9rem;
}

.VokejaguPrimeFooterLink:hover {
    color: #52E1FF;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .VokejaguPrimeHeroTitle { font-size: 2.8rem; }
    .VokejaguPrimeHeroWrapper, .VokejaguPrimeExpertWrapper, .VokejaguPrimeRegularWrapper {
        flex-direction: column;
        gap: 3rem;
    }
    .VokejaguPrimeHeroTextContent, .VokejaguPrimeHeroImageBlock, 
    .VokejaguPrimeExpertQuoteBlock, .VokejaguPrimeExpertImageBlock,
    .VokejaguPrimeRegularText, .VokejaguPrimeRegularImage {
        width: 100%;
        text-align: center;
    }
    .VokejaguPrimeExpertQuoteBlock { padding-left: 0; padding-top: 2rem; }
    .VokejaguPrimeExpertLine { width: 100%; height: 4px; left: 0; top: 0; }
    .VokejaguPrimePricesGrid { flex-direction: column; align-items: center; }
    .VokejaguPrimePriceItem { width: 100%; max-width: 500px; }
}

@media (max-width: 768px) {
    .VokejaguPrimeMobileMenuIcon { display: flex; }
    .VokejaguPrimeNavbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #04101A;
        padding: 2rem;
        border-bottom: 1px solid #52E1FF;
    }
    .VokejaguPrimeMobileMenuInput:checked ~ .VokejaguPrimeNavbar {
        display: block;
    }
    .VokejaguPrimeMenuList {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .VokejaguPrimeMobileMenuInput:checked ~ .VokejaguPrimeMobileMenuIcon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .VokejaguPrimeMobileMenuInput:checked ~ .VokejaguPrimeMobileMenuIcon span:nth-child(2) {
        opacity: 0;
    }
    .VokejaguPrimeMobileMenuInput:checked ~ .VokejaguPrimeMobileMenuIcon span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    .VokejaguPrimeFooterContainer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .VokejaguPrimeFooterLinks {
        align-items: center;
    }
    .VokejaguPrimeBenefitsGrid {
        flex-direction: column;
    }
}