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

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #060708;
    color: #e5e7eb;
}

body.ZomafimiqeTrackBody {
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* DECOR ELEMENTS */
.ZomafimiqeTrackSectionTitle {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.ZomafimiqeTrackSectionTitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: #FFC55E;
}

/* HEADER */
.ZomafimiqeTrackHeader {
    background-color: #060708;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 197, 94, 0.2);
}

.ZomafimiqeTrackHeaderGradient {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #060708, #FFC55E, #060708);
    background-size: 200% 100%;
    animation: ZomafimiqeTrackAnimGradient 5s linear infinite;
}

@keyframes ZomafimiqeTrackAnimGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.ZomafimiqeTrackHeaderFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.ZomafimiqeTrackNavList {
    display: flex;
    list-style: none;
    gap: 25px;
}

.ZomafimiqeTrackNavLink {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.ZomafimiqeTrackNavLink:hover {
    color: #FFC55E;
}

.ZomafimiqeTrackMenuCheckbox, .ZomafimiqeTrackBurger {
    display: none;
}

/* HERO SECTION */
.ZomafimiqeTrackHero {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(255, 197, 94, 0.05), transparent);
}

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

.ZomafimiqeTrackHeroContent {
    flex: 1;
}

.ZomafimiqeTrackMainTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.ZomafimiqeTrackHeroSub {
    font-size: 1.25rem;
    color: #FFC55E;
    margin-bottom: 20px;
    font-weight: 600;
}

.ZomafimiqeTrackHeroText {
    margin-bottom: 15px;
    color: #94a3b8;
}

.ZomafimiqeTrackHeroImageWrapper {
    flex: 1;
    position: relative;
}

.ZomafimiqeTrackHeroImg {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(0.2) contrast(1.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.ZomafimiqeTrackFactCard {
    position: absolute;
    background: rgba(17, 24, 39, 0.9);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #FFC55E;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 20px rgba(255, 197, 94, 0.1);
}

.ZomafimiqeTrackFactDot {
    width: 8px;
    height: 8px;
    background-color: #FFC55E;
    border-radius: 50%;
}

.ZomafimiqeTrackFact1 { top: 10%; left: -20px; }
.ZomafimiqeTrackFact2 { bottom: 20%; right: -20px; }
.ZomafimiqeTrackFact3 { top: 50%; right: 10%; }

/* BUTTONS */
.ZomafimiqeTrackBtnPrimary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #FFC55E;
    color: #060708;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.ZomafimiqeTrackBtnPrimary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 197, 94, 0.4);
}

.ZomafimiqeTrackBtnSecondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #FFC55E;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #FFC55E;
    transition: all 0.3s;
}

.ZomafimiqeTrackBtnSecondary:hover {
    background-color: rgba(255, 197, 94, 0.1);
}

/* SERVICES */
.ZomafimiqeTrackServices {
    padding: 80px 0;
    background-color: #0a0c0e;
}

.ZomafimiqeTrackPriceGrid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.ZomafimiqeTrackPriceCard {
    flex: 1;
    background: #111827;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #1f2937;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.ZomafimiqeTrackPriceCard:hover {
    transform: translateY(-10px);
}

.ZomafimiqeTrackPriceCardFeatured {
    border-color: #FFC55E;
    background: linear-gradient(180deg, #111827 0%, #060708 100%);
    position: relative;
    transform: scale(1.05);
}

.ZomafimiqeTrackPriceIcon img {
    margin-bottom: 20px;
}

.ZomafimiqeTrackPriceName {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.ZomafimiqeTrackPriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFC55E;
    margin-bottom: 25px;
}

.ZomafimiqeTrackPriceList {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.ZomafimiqeTrackPriceList li {
    padding: 8px 0;
    border-bottom: 1px solid #1f2937;
    font-size: 0.95rem;
    color: #94a3b8;
}

/* AUDIENCE */
.ZomafimiqeTrackAudience {
    padding: 80px 0;
}

.ZomafimiqeTrackAudienceIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ZomafimiqeTrackAudienceGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ZomafimiqeTrackAudienceItem {
    background: #111827;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 197, 94, 0.05);
    transition: box-shadow 0.3s;
}

.ZomafimiqeTrackAudienceItem:hover {
    box-shadow: 0 0 25px rgba(255, 197, 94, 0.15);
}

.ZomafimiqeTrackAudienceItem h3 {
    color: #FFC55E;
    margin-bottom: 15px;
}

/* REGULAR PRACTICE */
.ZomafimiqeTrackRegular {
    padding: 80px 0;
    background-color: #0a0c0e;
}

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

.ZomafimiqeTrackRegularContent {
    flex: 1.2;
}

.ZomafimiqeTrackRegularLead {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.ZomafimiqeTrackBenefitCards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ZomafimiqeTrackBenefitCard {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-left: 3px solid #FFC55E;
}

.ZomafimiqeTrackBenefitCard h4 {
    margin-bottom: 10px;
    color: #ffffff;
}

.ZomafimiqeTrackRegularImage {
    flex: 0.8;
}

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

/* TEXT INFO BLOCKS */
.ZomafimiqeTrackInfoBlocks {
    padding: 80px 0;
}

.ZomafimiqeTrackTextBlock {
    background: #111827;
    padding: 50px;
    border-radius: 24px;
    margin-bottom: 40px;
    border: 1px solid #1f2937;
}

.ZomafimiqeTrackTextBlock h3 {
    font-size: 2rem;
    color: #FFC55E;
    margin-bottom: 25px;
}

.ZomafimiqeTrackTextBlock p {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.ZomafimiqeTrackQuoteSmall {
    font-style: italic;
    border-left: 4px solid #FFC55E;
    padding-left: 20px;
    margin: 30px 0;
    color: #ffffff;
    font-size: 1.1rem;
}

.ZomafimiqeTrackTextBlock ul {
    margin-left: 20px;
    list-style: square;
    color: #FFC55E;
}

.ZomafimiqeTrackTextBlock ul li {
    margin-bottom: 10px;
    color: #cbd5e1;
}

/* FAQ */
.ZomafimiqeTrackFaq {
    padding: 80px 0;
    background-color: #0a0c0e;
}

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

.ZomafimiqeTrackFaqItem {
    background: #111827;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.ZomafimiqeTrackFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    border: 1px solid #1f2937;
    border-radius: 10px;
}

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

.ZomafimiqeTrackFaqSummary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #FFC55E;
    font-size: 1.5rem;
}

.ZomafimiqeTrackFaqItem[open] .ZomafimiqeTrackFaqSummary::after {
    content: '-';
}

.ZomafimiqeTrackFaqContent {
    padding: 20px;
    color: #94a3b8;
    border-top: 1px solid #1f2937;
}

/* EXPERT QUOTE */
.ZomafimiqeTrackExpert {
    padding: 100px 0;
    background: linear-gradient(to bottom, #060708, #111827);
}

.ZomafimiqeTrackExpertWrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ZomafimiqeTrackBigQuote {
    font-size: 2rem;
    line-height: 1.4;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 40px;
}

.ZomafimiqeTrackExpertInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ZomafimiqeTrackExpertAvatar {
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #FFC55E;
}

.ZomafimiqeTrackExpertName {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFC55E;
}

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

/* CONTACT & FORM */
.ZomafimiqeTrackContact {
    padding: 80px 0;
}

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

.ZomafimiqeTrackContactInfo {
    flex: 1;
}

.ZomafimiqeTrackContactDetail {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #FFC55E;
}

.ZomafimiqeTrackFormWrapper {
    flex: 1;
    background: #111827;
    padding: 40px;
    border-radius: 20px;
}

.ZomafimiqeTrackFormGroup {
    margin-bottom: 20px;
}

.ZomafimiqeTrackFormGroup label {
    display: block;
    margin-bottom: 8px;
    color: #94a3b8;
}

.ZomafimiqeTrackFormGroup input, .ZomafimiqeTrackFormGroup textarea {
    width: 100%;
    padding: 12px;
    background: #060708;
    border: 1px solid #1f2937;
    border-radius: 6px;
    color: #ffffff;
}

.ZomafimiqeTrackFormCheckbox {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ZomafimiqeTrackFormCheckbox label {
    font-size: 0.85rem;
    color: #94a3b8;
}

.ZomafimiqeTrackFormCheckbox a {
    color: #FFC55E;
}

.ZomafimiqeTrackBtnFull {
    width: 100%;
}

/* FOOTER */
.ZomafimiqeTrackFooter {
    background-color: #060708;
    padding: 60px 0 30px;
    border-top: 1px solid #1f2937;
}

.ZomafimiqeTrackFooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.ZomafimiqeTrackFooterBottom {
    border-top: 1px solid #1f2937;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

.ZomafimiqeTrackFooterLinks {
    display: flex;
    gap: 20px;
}

.ZomafimiqeTrackFooterLinks a {
    color: #64748b;
    text-decoration: none;
}

.ZomafimiqeTrackFooterLinks a:hover {
    color: #FFC55E;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ZomafimiqeTrackHeroGrid, .ZomafimiqeTrackRegularFlex, .ZomafimiqeTrackContactGrid {
        flex-direction: column;
        text-align: center;
    }
    .ZomafimiqeTrackHeroContent, .ZomafimiqeTrackRegularContent {
        order: 2;
    }
    .ZomafimiqeTrackHeroImageWrapper, .ZomafimiqeTrackRegularImage {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    .ZomafimiqeTrackPriceGrid, .ZomafimiqeTrackAudienceGrid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .ZomafimiqeTrackPriceCardFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .ZomafimiqeTrackBurger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    .ZomafimiqeTrackBurger span {
        width: 30px;
        height: 3px;
        background-color: #FFC55E;
    }
    .ZomafimiqeTrackNav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #060708;
        padding: 20px;
        border-bottom: 1px solid #FFC55E;
    }
    .ZomafimiqeTrackNavList {
        flex-direction: column;
        text-align: center;
    }
    #ZomafimiqeTrackMenuToggle:checked ~ .ZomafimiqeTrackNav {
        display: block;
    }
    .ZomafimiqeTrackMainTitle {
        font-size: 2.5rem;
    }
    .ZomafimiqeTrackFooterBottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Batch legal/thank pages shared styles */
.policy-page,
.legal-page,
.thank-page {
    min-height: 100vh;
}

.policy-shell,
.legal-container,
.thank-shell {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) 0;
}

.policy-card,
.thank-card {
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 28px;
    background: var(--card-bg, var(--plasma-card, var(--white, #ffffff)));
    color: inherit;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
    padding: clamp(26px, 5vw, 56px);
}

.policy-title,
.thank-card h1 {
    margin: 0 0 18px;
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, currentColor)))));
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.policy-subtitle,
.policy-lead,
.thank-eyebrow,
.thank-card p {
    color: var(--text-secondary, var(--text-dim, var(--plasma-subtext, var(--gray-text, inherit))));
}

.policy-lead,
.thank-card > p {
    font-size: clamp(1rem, 2vw, 1.16rem);
    margin-bottom: 28px;
}

.policy-section {
    padding: 24px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.policy-section h2,
.thank-next h2 {
    margin: 0 0 12px;
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, currentColor)))));
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

.policy-section p,
.thank-next p {
    margin: 0 0 12px;
    line-height: 1.75;
}

.policy-nav,
.thank-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.policy-back-link,
.thank-button,
.thank-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.thank-button,
.policy-nav .policy-back-link:first-child {
    background: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #2563eb)))));
    color: var(--main-bg, var(--plasma-bg, #ffffff));
    border-color: transparent;
}

.thank-card {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.thank-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #22c55e)))));
    color: var(--main-bg, var(--plasma-bg, #ffffff));
    font-size: 42px;
    font-weight: 900;
}

.thank-next {
    margin: 28px auto 0;
    padding: 22px;
    border-radius: 20px;
    background: rgba(148, 163, 184, 0.12);
    text-align: left;
}

.policy-card a,
.thank-card a {
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, currentColor)))));
}

@media (max-width: 680px) {
    .policy-shell,
    .legal-container,
    .thank-shell {
        width: min(100% - 20px, 1040px);
        padding: 28px 0;
    }

    .policy-card,
    .thank-card {
        border-radius: 20px;
        padding: 22px;
    }

    .policy-nav,
    .thank-actions {
        flex-direction: column;
    }

    .policy-back-link,
    .thank-button,
    .thank-link {
        width: 100%;
    }
}
/* Batch legal readability patch */
.policy-page,
.legal-page,
.thank-page {
    background-color: var(--main-bg, var(--plasma-bg, var(--behogino-bg, var(--berry-soft, #0f172a))));
}

.policy-card,
.thank-card {
    background: rgba(255, 255, 255, 0.97) !important;
    color: #172033 !important;
    border-color: rgba(15, 23, 42, 0.10) !important;
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.24) !important;
}

.policy-title,
.thank-card h1,
.policy-section h2,
.thank-next h2 {
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #2563eb))))) !important;
    -webkit-text-fill-color: currentColor !important;
}

.policy-subtitle,
.policy-lead,
.thank-eyebrow,
.thank-card p,
.policy-section p,
.thank-next p {
    color: #334155 !important;
}

.policy-section {
    border-top-color: rgba(15, 23, 42, 0.12) !important;
}

.policy-card a,
.thank-card a {
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #2563eb))))) !important;
}

.policy-nav .policy-back-link:first-child,
.thank-button {
    color: #06111f !important;
}

.thank-next {
    background: #f1f5f9 !important;
}

/* Batch mobile overflow safety */
@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    body * {
        min-width: 0;
    }

    img,
    video,
    svg {
        max-width: 100%;
        height: auto;
    }

    h1,
    h2,
    .policy-title,
    .thank-card h1 {
        overflow-wrap: anywhere;
        word-break: normal;
    }
}
