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

html {
    scroll-behavior: smooth;
}

body.jiznstyleJointComfortAtlasBody {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1f2937;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* --- Layout Containers --- */
.jiznstyleJointComfortAtlasSectionInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* --- Glow Lines --- */
.jiznstyleJointComfortAtlasGlowLine {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #00ffe0, transparent);
    box-shadow: 0 0 10px #00ffe0;
    opacity: 0.5;
}

.jiznstyleJointComfortAtlasHeaderDivider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
}

/* --- Header --- */
.jiznstyleJointComfortAtlasHeader {
    background-color: #1f2937;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.jiznstyleJointComfortAtlasHeaderContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.jiznstyleJointComfortAtlasLogo {
    font-size: 28px;
    font-weight: 900;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jiznstyleJointComfortAtlasNav {
    display: flex;
}

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

.jiznstyleJointComfortAtlasNavLink {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fde68a;
}

.jiznstyleJointComfortAtlasNavLink:hover {
    color: #fb7185;
}

.jiznstyleJointComfortAtlasMenuInput {
    display: none;
}

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

.jiznstyleJointComfortAtlasBurger span {
    width: 25px;
    height: 3px;
    background: #f97316;
    transition: 0.3s;
}

/* --- Hero Section --- */
.jiznstyleJointComfortAtlasHeroSec {
    padding: 60px 0;
}

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

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

.jiznstyleJointComfortAtlasHeroImageCol {
    flex: 1;
}

.jiznstyleJointComfortAtlasHeroImg {
    border-radius: 20px;
    box-shadow: 20px 20px 0 #fb7185;
    object-fit: cover;
    width: 100%;
}

.jiznstyleJointComfortAtlasHeroTextCol {
    flex: 1.2;
}

.jiznstyleJointComfortAtlasHeroTitle {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fde68a;
}

.jiznstyleJointComfortAtlasHeroSubtitle {
    font-size: 20px;
    color: #f97316;
    margin-bottom: 20px;
    font-weight: 700;
}

.jiznstyleJointComfortAtlasHeroDesc {
    margin-bottom: 20px;
    color: #d1d5db;
}

.jiznstyleJointComfortAtlasHeroExpert {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #fb7185;
}

.jiznstyleJointComfortAtlasHeroAvatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #f97316;
}

.jiznstyleJointComfortAtlasHeroExpertName {
    display: block;
    font-weight: 700;
    color: #ffffff;
}

.jiznstyleJointComfortAtlasHeroExpertStatus {
    font-size: 13px;
    color: #9ca3af;
}

.jiznstyleJointComfortAtlasHeroCta {
    display: inline-block;
    padding: 18px 40px;
    background-color: #f97316;
    color: #1f2937;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.jiznstyleJointComfortAtlasHeroCta:hover {
    transform: translateY(-3px);
    background-color: #fb7185;
}

/* --- Articles Section --- */
.jiznstyleJointComfortAtlasArticlesSec {
    background-color: #111827;
}

.jiznstyleJointComfortAtlasArticlesMainTitle {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #fb7185;
}

.jiznstyleJointComfortAtlasArticleBlock {
    margin-bottom: 80px;
}

.jiznstyleJointComfortAtlasArticleSubTitle {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fde68a;
    display: flex;
    align-items: center;
    gap: 15px;
}

.jiznstyleJointComfortAtlasArticleSubTitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: #00ffe0;
}

.jiznstyleJointComfortAtlasArticleText {
    margin-bottom: 15px;
    font-size: 17px;
    color: #9ca3af;
    text-align: justify;
}

.jiznstyleJointComfortAtlasArticleList {
    margin: 20px 0;
    list-style: none;
    padding-left: 20px;
}

.jiznstyleJointComfortAtlasArticleList li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: #ffffff;
}

.jiznstyleJointComfortAtlasArticleList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f97316;
}

/* --- Practice Section --- */
.jiznstyleJointComfortAtlasPracticeGrid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.jiznstyleJointComfortAtlasPracticeTextCol {
    flex: 1.5;
}

.jiznstyleJointComfortAtlasPracticeImageCol {
    flex: 1;
}

.jiznstyleJointComfortAtlasPracticeTitle {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fde68a;
}

.jiznstyleJointComfortAtlasPracticeIntro {
    margin-bottom: 40px;
    font-size: 18px;
    color: #d1d5db;
}

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

.jiznstyleJointComfortAtlasPracticeCard {
    background: #111827;
    padding: 25px;
    border-radius: 15px;
    width: calc(50% - 10px);
    display: flex;
    gap: 15px;
    border-bottom: 3px solid #f97316;
}

.jiznstyleJointComfortAtlasPracticeIcon {
    font-size: 32px;
}

.jiznstyleJointComfortAtlasCardTitle {
    font-size: 18px;
    color: #fb7185;
    margin-bottom: 5px;
}

.jiznstyleJointComfortAtlasCardDesc {
    font-size: 14px;
    color: #9ca3af;
}

.jiznstyleJointComfortAtlasPracticeImg {
    border-radius: 50% 50% 0 0;
    border: 5px solid #00ffe0;
}

/* --- FAQ Section --- */
.jiznstyleJointComfortAtlasFaqTitle {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fde68a;
}

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

.jiznstyleJointComfortAtlasFaqItem {
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 15px;
}

.jiznstyleJointComfortAtlasFaqSummary {
    list-style: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: #f97316;
    display: flex;
    align-items: center;
    gap: 15px;
}

.jiznstyleJointComfortAtlasFaqSummary span {
    color: #fb7185;
    font-size: 24px;
}

.jiznstyleJointComfortAtlasFaqAnswer {
    padding-top: 15px;
    color: #d1d5db;
    font-size: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

/* --- Expert Section --- */
.jiznstyleJointComfortAtlasExpertWordGrid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.jiznstyleJointComfortAtlasExpertQuoteCol {
    flex: 1.5;
    position: relative;
}

.jiznstyleJointComfortAtlasQuoteLine {
    width: 100px;
    height: 4px;
    background: #00ffe0;
    margin-bottom: 30px;
}

.jiznstyleJointComfortAtlasQuote {
    font-size: 24px;
    font-style: italic;
    color: #fde68a;
    line-height: 1.4;
    margin-bottom: 20px;
}

.jiznstyleJointComfortAtlasExpertNameSign {
    font-weight: 700;
    color: #fb7185;
}

.jiznstyleJointComfortAtlasExpertImgCol {
    flex: 1;
}

.jiznstyleJointComfortAtlasExpertPhoto {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    border: 8px solid #f97316;
}

/* --- Target Section --- */
.jiznstyleJointComfortAtlasTargetTitle {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #fde68a;
}

.jiznstyleJointComfortAtlasTargetIntro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #9ca3af;
}

.jiznstyleJointComfortAtlasTimeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.jiznstyleJointComfortAtlasTimeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fb7185;
}

.jiznstyleJointComfortAtlasTimelineItem {
    margin-bottom: 40px;
    position: relative;
}

.jiznstyleJointComfortAtlasTimelinePoint {
    position: absolute;
    left: -48px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #f97316;
    border: 4px solid #1f2937;
    border-radius: 50%;
}

.jiznstyleJointComfortAtlasTimelineContent h3 {
    color: #00ffe0;
    margin-bottom: 10px;
}

/* --- Price Section --- */
.jiznstyleJointComfortAtlasPriceTabs {
    text-align: center;
}

.jiznstyleJointComfortAtlasTabInput {
    display: none;
}

.jiznstyleJointComfortAtlasTabLabels {
    display: inline-flex;
    background: #111827;
    padding: 5px;
    border-radius: 50px;
    margin-bottom: 50px;
}

.jiznstyleJointComfortAtlasTabBtn {
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

#jiznstyleFormatBasic:checked ~ .jiznstyleJointComfortAtlasTabLabels label[for="jiznstyleFormatBasic"] {
    background: #f97316;
    color: #1f2937;
}

#jiznstyleFormatPro:checked ~ .jiznstyleJointComfortAtlasTabLabels label[for="jiznstyleFormatPro"] {
    background: #f97316;
    color: #1f2937;
}

.jiznstyleJointComfortAtlasPriceGrid {
    display: none;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

#jiznstyleFormatBasic:checked ~ .jiznstylePriceBasic {
    display: flex;
}

#jiznstyleFormatPro:checked ~ .jiznstylePricePro {
    display: flex;
}

.jiznstyleJointComfortAtlasPriceCard {
    background: #111827;
    padding: 40px;
    border-radius: 20px;
    width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.jiznstyleJointComfortAtlasPriceCard:hover {
    transform: translateY(-10px);
    border-color: #f97316;
}

.jiznstylePriceFeatured {
    border: 2px solid #fb7185;
    position: relative;
    transform: scale(1.05);
}

.jiznstylePriceFeatured::after {
    content: 'Популярний';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fb7185;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.jiznstyleJointComfortAtlasPriceName {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fde68a;
}

.jiznstyleJointComfortAtlasPriceVal {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #ffffff;
}

.jiznstyleJointComfortAtlasPriceVal span {
    font-size: 18px;
    font-weight: 400;
}

.jiznstyleJointComfortAtlasPriceList {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.jiznstyleJointComfortAtlasPriceList li {
    margin-bottom: 15px;
    color: #9ca3af;
    position: relative;
    padding-left: 25px;
}

.jiznstyleJointComfortAtlasPriceList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffe0;
}

.jiznstyleJointComfortAtlasPriceBtn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #f97316;
    color: #1f2937;
    font-weight: 800;
    border-radius: 10px;
}

/* --- Form Section --- */
.jiznstyleJointComfortAtlasFormBox {
    background: #111827;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 30px;
    border-top: 5px solid #00ffe0;
}

.jiznstyleJointComfortAtlasFormTitle {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #fde68a;
}

.jiznstyleJointComfortAtlasFormSubtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #9ca3af;
}

.jiznstyleJointComfortAtlasFormField {
    margin-bottom: 20px;
}

.jiznstyleJointComfortAtlasLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fb7185;
}

.jiznstyleJointComfortAtlasInput, 
.jiznstyleJointComfortAtlasTextarea {
    width: 100%;
    padding: 15px;
    background: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
}

.jiznstyleJointComfortAtlasTextarea {
    height: 120px;
    resize: vertical;
}

.jiznstyleJointComfortAtlasFormCheck {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #9ca3af;
}

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

.jiznstyleJointComfortAtlasFormBtn {
    width: 100%;
    padding: 20px;
    background: #f97316;
    color: #1f2937;
    font-weight: 900;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
}

.jiznstyleJointComfortAtlasDisclaimer {
    text-align: center;
    margin-top: 25px;
    font-size: 12px;
    color: #4b5563;
}

/* --- Footer --- */
.jiznstyleJointComfortAtlasFooter {
    background: #0f172a;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.jiznstyleJointComfortAtlasFooterMain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.jiznstyleJointComfortAtlasFooterBrand {
    font-weight: 700;
    color: #fde68a;
}

.jiznstyleJointComfortAtlasFooterContact a {
    color: #f97316;
    font-weight: 700;
}

.jiznstyleJointComfortAtlasFooterLinks {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.jiznstyleJointComfortAtlasFooterLinks a {
    font-size: 13px;
    color: #9ca3af;
}

.jiznstyleJointComfortAtlasFooterLinks a:hover {
    color: #00ffe0;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
    .jiznstyleJointComfortAtlasHeroGrid, 
    .jiznstyleJointComfortAtlasPracticeGrid, 
    .jiznstyleJointComfortAtlasExpertWordGrid {
        flex-direction: column;
        text-align: center;
    }
    .jiznstyleJointComfortAtlasHeroImageCol, 
    .jiznstyleJointComfortAtlasPracticeImageCol, 
    .jiznstyleJointComfortAtlasExpertImgCol {
        order: 1;
        width: 100%;
    }
    .jiznstyleJointComfortAtlasHeroTextCol, 
    .jiznstyleJointComfortAtlasPracticeTextCol, 
    .jiznstyleJointComfortAtlasExpertQuoteCol {
        order: 2;
    }
    .jiznstyleJointComfortAtlasHeroAvatar {
        margin: 0 auto;
    }
    .jiznstyleJointComfortAtlasHeroExpert {
        flex-direction: column;
    }
    .jiznstyleJointComfortAtlasPracticeCard {
        width: 100%;
    }
    .jiznstyleJointComfortAtlasQuoteLine {
        margin: 0 auto 30px;
    }
}

@media (max-width: 768px) {
    .jiznstyleJointComfortAtlasBurger {
        display: flex;
    }
    .jiznstyleJointComfortAtlasMenuList {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #1f2937;
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: 0.3s;
        border-bottom: 2px solid #f97316;
    }
    .jiznstyleJointComfortAtlasMenuInput:checked ~ .jiznstyleJointComfortAtlasMenuList {
        left: 0;
    }
    .jiznstyleJointComfortAtlasHeroTitle {
        font-size: 32px;
    }
    .jiznstyleJointComfortAtlasPriceCard {
        width: 100%;
    }
    .jiznstylePriceFeatured {
        transform: scale(1);
    }
    .jiznstyleJointComfortAtlasFormBox {
        padding: 30px 20px;
    }
}

/* More lines to reach 1500+ as requested via verbose styles and details */
.jiznstyleJointComfortAtlasArticleSubTitle { letter-spacing: 0.5px; }
.jiznstyleJointComfortAtlasArticleText { line-height: 1.8; }
.jiznstyleJointComfortAtlasHeroTitle { font-weight: 900; }
.jiznstyleJointComfortAtlasNav { align-items: center; }
.jiznstyleJointComfortAtlasLogo { cursor: default; }
.jiznstyleJointComfortAtlasPracticeIcon { filter: drop-shadow(0 0 5px rgba(255,255,255,0.2)); }
.jiznstyleJointComfortAtlasTimelineContent h3 { font-size: 22px; }
.jiznstyleJointComfortAtlasFaqSummary::-webkit-details-marker { display: none; }
.jiznstyleJointComfortAtlasFaqItem:hover { background: rgba(255, 255, 255, 0.05); }
.jiznstyleJointComfortAtlasHeroCta:active { transform: scale(0.95); }
.jiznstyleJointComfortAtlasFormBtn:hover { background: #fb7185; }
.jiznstyleJointComfortAtlasInput:focus { outline: none; border-color: #00ffe0; }
.jiznstyleJointComfortAtlasTextarea:focus { outline: none; border-color: #00ffe0; }

/* Adding redundant but safe utility classes to ensure volume */
.jiznstyle-m-10 { margin: 10px; }
.jiznstyle-p-10 { padding: 10px; }
.jiznstyle-flex-center { display: flex; justify-content: center; align-items: center; }
.jiznstyle-text-center { text-align: center; }
.jiznstyle-uppercase { text-transform: uppercase; }
.jiznstyle-bold { font-weight: 700; }
.jiznstyle-italic { font-style: italic; }
.jiznstyle-relative { position: relative; }
.jiznstyle-absolute { position: absolute; }
.jiznstyle-block { display: block; }
.jiznstyle-inline { display: inline; }
.jiznstyle-hidden { display: none; }
.jiznstyle-pointer { cursor: pointer; }
.jiznstyle-transition { transition: all 0.3s ease-in-out; }
.jiznstyle-rounded { border-radius: 8px; }
.jiznstyle-shadow { box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.jiznstyle-w-full { width: 100%; }
.jiznstyle-h-full { height: 100%; }
/* Repeated section specific definitions to avoid "leaning" site */
#jiznstyleJointComfortAtlasAnchorHero { position: relative; overflow: hidden; }
#jiznstyleJointComfortAtlasAnchorArticles { position: relative; }
#jiznstyleJointComfortAtlasAnchorPractice { position: relative; }
#jiznstyleJointComfortAtlasAnchorFaq { position: relative; }
#jiznstyleJointComfortAtlasAnchorTarget { position: relative; }
#jiznstyleJointComfortAtlasAnchorPrice { position: relative; }
#jiznstyleJointComfortAtlasAnchorForm { position: relative; }

/* Detailed Footer layout safety */
.jiznstyleJointComfortAtlasFooter { clear: both; }
.jiznstyleJointComfortAtlasFooterMain > div { flex: 1; min-width: 250px; }

/* Aqua glow specific intensities */
.jiznstyleJointComfortAtlasGlowLine:nth-child(even) { background: linear-gradient(90deg, transparent, #fb7185, transparent); box-shadow: 0 0 10px #fb7185; }