/* КЛЮЧОВІ НАЛАШТУВАННЯ */
:root {
    --zand-bg: #0A0C10;
    --zand-accent: #CFFF35;
    --zand-text: #E0E0E0;
    --zand-text-dim: #A0A0A0;
    --zand-dark-accent: #15181E;
    --zand-pulse-shadow: rgba(207, 255, 53, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body.zandPulseAxisBody {
    background-color: var(--zand-bg);
    color: var(--zand-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* HEADER */
.zandPulseAxisHeader {
    background-color: rgba(10, 12, 16, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--zand-accent);
    backdrop-filter: blur(10px);
}

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

.zandPulseAxisLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--zand-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.zandPulseAxisNavList {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.zandPulseAxisNavLink:hover {
    color: var(--zand-accent);
}

/* BURGER MENU */
.zandPulseAxisNavInput {
    display: none;
}

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

.zandPulseAxisBurger span {
    width: 25px;
    height: 3px;
    background-color: var(--zand-accent);
    transition: 0.3s;
}

/* HERO SECTION */
.zandPulseAxisHero {
    padding: 80px 0;
    position: relative;
}

.zandPulseAxisQuickLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    justify-content: center;
}

.zandPulseAxisQuickBtn {
    background: transparent;
    border: 1px solid var(--zand-accent);
    color: var(--zand-accent);
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.zandPulseAxisQuickBtn:hover {
    background: var(--zand-accent);
    color: var(--zand-bg);
    box-shadow: 0 0 15px var(--zand-pulse-shadow);
}

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

.zandPulseAxisHeroImgBox {
    flex: 1;
}

.zandPulseAxisHeroImg {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border-right: 5px solid var(--zand-accent);
    border-bottom: 5px solid var(--zand-accent);
    object-fit: cover;
}

.zandPulseAxisHeroContent {
    flex: 1.2;
}

.zandPulseAxisH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.zandPulseAxisSub {
    font-size: 1.25rem;
    color: var(--zand-accent);
    margin-bottom: 25px;
    font-weight: 500;
}

.zandPulseAxisP {
    margin-bottom: 20px;
    color: var(--zand-text-dim);
    font-size: 1.1rem;
}

.zandPulseAxisCtaBtn {
    display: inline-block;
    background-color: var(--zand-accent);
    color: var(--zand-bg);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.zandPulseAxisCtaBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--zand-pulse-shadow);
}

/* REVIEWS SLIDER */
.zandPulseAxisReviews {
    padding: 100px 0;
    background-color: var(--zand-dark-accent);
}

.zandPulseAxisH2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
    position: relative;
}

.zandPulseAxisH2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--zand-accent);
    margin: 15px auto 0;
}

.zandPulseAxisSliderWrap {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}

.zandPulseAxisSliderWrap::-webkit-scrollbar {
    display: none;
}

.zandPulseAxisSlider {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.zandPulseAxisReviewCard {
    min-width: 350px;
    background: var(--zand-bg);
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid var(--zand-accent);
    scroll-snap-align: center;
}

.zandPulseAxisReviewText {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.zandPulseAxisReviewAuthor {
    color: var(--zand-accent);
    font-weight: 600;
}

/* PRICE SECTION */
.zandPulseAxisPrice {
    padding: 100px 0;
}

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

.zandPulseAxisPriceCard {
    background: var(--zand-dark-accent);
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.zandPulseAxisPriceCard:hover {
    transform: scale(1.02);
    border-color: var(--zand-accent);
}

.zandPulseAxisPriceCardFeatured {
    border: 2px solid var(--zand-accent);
    position: relative;
}

.zandPulseAxisH3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.zandPulseAxisCost {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--zand-accent);
    margin-bottom: 30px;
}

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

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

.zandPulseAxisPriceList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--zand-accent);
}

.zandPulseAxisPriceBtn {
    display: block;
    text-align: center;
    border: 1px solid var(--zand-accent);
    color: var(--zand-accent);
    padding: 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.zandPulseAxisPriceBtn:hover {
    background: var(--zand-accent);
    color: var(--zand-bg);
}

/* WHO SECTION */
.zandPulseAxisWho {
    padding: 100px 0;
    background: #0d0f14;
}

.zandPulseAxisTopImg {
    margin-bottom: 60px;
}

.zandPulseAxisFullImg {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.zandPulseAxisWhoList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin-top: 40px;
}

.zandPulseAxisWhoItem {
    background: var(--zand-dark-accent);
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid #222;
    flex: 1 1 calc(50% - 20px);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.zandPulseAxisWhoItem::before {
    content: '◈';
    margin-right: 15px;
    color: var(--zand-accent);
    font-size: 1.2rem;
}

/* BENEFITS SECTION */
.zandPulseAxisBenefits {
    padding: 100px 0;
}

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

.zandPulseAxisBenefitsContent {
    flex: 1.2;
}

.zandPulseAxisBenefitsList {
    list-style: none;
    margin-top: 30px;
}

.zandPulseAxisBenefitsList li {
    margin-bottom: 25px;
    font-size: 1.1rem;
    padding-left: 40px;
    position: relative;
}

.zandPulseAxisBenefitsList li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 24px;
    height: 24px;
    background-color: var(--zand-accent);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
}

.zandPulseAxisBenefitsImgBox {
    flex: 1;
}

.zandPulseAxisImg {
    width: 100%;
    border-radius: 30px;
    box-shadow: -20px 20px 0 var(--zand-dark-accent);
}

/* EXPERT BLOCK */
.zandPulseAxisExpert {
    padding: 80px 0;
    background: linear-gradient(90deg, var(--zand-bg) 0%, var(--zand-dark-accent) 100%);
    border-top: 1px solid var(--zand-accent);
    border-bottom: 1px solid var(--zand-accent);
}

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

.zandPulseAxisQuote {
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.4;
}

.zandPulseAxisCite {
    font-size: 1.2rem;
    color: var(--zand-accent);
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

/* FAQ */
.zandPulseAxisFaq {
    padding: 100px 0;
}

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

.zandPulseAxisFaqItem {
    background: var(--zand-dark-accent);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #222;
}

.zandPulseAxisFaqSum {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zandPulseAxisFaqSum::after {
    content: '+';
    color: var(--zand-accent);
    font-size: 1.5rem;
}

.zandPulseAxisFaqItem[open] .zandPulseAxisFaqSum::after {
    content: '-';
}

.zandPulseAxisFaqText {
    padding: 0 25px 25px;
    color: var(--zand-text-dim);
}

/* FORM */
.zandPulseAxisFormSec {
    padding: 100px 0;
    background: var(--zand-dark-accent);
}

.zandPulseAxisFormWrap {
    max-width: 600px;
    margin: 0 auto;
}

.zandPulseAxisForm {
    margin-top: 40px;
}

.zandPulseAxisInputGroup {
    margin-bottom: 25px;
}

.zandPulseAxisLabel {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--zand-accent);
}

.zandPulseAxisInput, .zandPulseAxisTextarea {
    width: 100%;
    background: var(--zand-bg);
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    border-radius: 5px;
    outline: none;
}

.zandPulseAxisInput:focus, .zandPulseAxisTextarea:focus {
    border-color: var(--zand-accent);
}

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

.zandPulseAxisCheckGroup {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zandPulseAxisCheckLabel a {
    color: var(--zand-accent);
}

.zandPulseAxisSubmitBtn {
    width: 100%;
    background: var(--zand-accent);
    color: var(--zand-bg);
    padding: 20px;
    border: none;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.zandPulseAxisSubmitBtn:hover {
    box-shadow: 0 0 25px var(--zand-pulse-shadow);
}

/* INFO SECTIONS */
.zandPulseAxisInfoSec {
    padding: 80px 0;
}

.zandPulseAxisAltBg {
    background-color: #0d0f14;
}

.zandPulseAxisTextContent {
    max-width: 900px;
    margin-top: 30px;
}

.zandPulseAxisListStyled {
    margin: 30px 0;
    list-style: none;
}

.zandPulseAxisListStyled li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.zandPulseAxisListStyled li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--zand-accent);
}

/* FOOTER */
.zandPulseAxisFooter {
    padding: 60px 0;
    background: var(--zand-bg);
    border-top: 2px solid var(--zand-accent);
    text-align: center;
}

.zandPulseAxisFooterTop {
    margin-bottom: 40px;
}

.zandPulseAxisFooterTop p {
    margin-bottom: 10px;
    color: var(--zand-text-dim);
}

.zandPulseAxisFooterTop a {
    color: var(--zand-accent);
    text-decoration: none;
}

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

.zandPulseAxisFooterLinks a {
    color: var(--zand-text-dim);
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
}

.zandPulseAxisFooterLinks a:hover {
    color: var(--zand-accent);
}

/* ADAPTIVITY */
@media (max-width: 992px) {
    .zandPulseAxisHeroGrid, .zandPulseAxisBenefitsGrid {
        flex-direction: column;
    }
    
    .zandPulseAxisH1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .zandPulseAxisNav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--zand-bg);
        transition: 0.4s;
        padding-top: 50px;
    }
    
    .zandPulseAxisNavList {
        flex-direction: column;
        align-items: center;
    }
    
    .zandPulseAxisBurger {
        display: flex;
    }
    
    .zandPulseAxisNavInput:checked ~ .zandPulseAxisNav {
        left: 0;
    }
    
    .zandPulseAxisWhoItem {
        flex: 1 1 100%;
    }
}