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

:root {
    --CiqajelaxoPulseDark: #111827;
    --CiqajelaxoPulseIndigo: #4f46e5;
    --CiqajelaxoPulseLavender: #c4b5fd;
    --CiqajelaxoPulseSlate: #f8fafc;
    --CiqajelaxoPulseWhite: #ffffff;
    --CiqajelaxoPulseGlow: rgba(79, 70, 229, 0.4);
    --CiqajelaxoPulseAquaGlow: rgba(196, 181, 253, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--CiqajelaxoPulseSlate);
    color: var(--CiqajelaxoPulseDark);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* HEADER */
.CiqajelaxoPulseHeaderWrap {
    background-color: var(--CiqajelaxoPulseDark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.CiqajelaxoPulseHeaderDoubleLineTop {
    height: 1px;
    background-color: #000000;
}

.CiqajelaxoPulseHeaderDoubleLineBottom {
    height: 1px;
    background-color: #374151;
}

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

.CiqajelaxoPulseLogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--CiqajelaxoPulseLavender);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.CiqajelaxoPulseNavList {
    display: flex;
    gap: 2rem;
}

.CiqajelaxoPulseNavLink {
    color: var(--CiqajelaxoPulseSlate);
    font-weight: 500;
    font-size: 0.95rem;
}

.CiqajelaxoPulseNavLink:hover {
    color: var(--CiqajelaxoPulseLavender);
}

.CiqajelaxoPulseNavCheckbox, .CiqajelaxoPulseBurgerLabel {
    display: none;
}

/* HERO SECTION */
.CiqajelaxoPulseHeroSection {
    padding: 6rem 2rem;
    background-color: var(--CiqajelaxoPulseDark);
    color: var(--CiqajelaxoPulseWhite);
    position: relative;
    overflow: hidden;
}

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

.CiqajelaxoPulseHeroImageCol {
    flex: 1;
}

.CiqajelaxoPulseHeroImageWrapper {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 0 40px var(--CiqajelaxoPulseGlow);
}

.CiqajelaxoPulseHeroImg {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

.CiqajelaxoPulseBadgeInfo {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--CiqajelaxoPulseIndigo);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.CiqajelaxoPulseHeroTextCol {
    flex: 1.2;
}

.CiqajelaxoPulseHeroTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--CiqajelaxoPulseLavender);
}

.CiqajelaxoPulseHeroSubtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--CiqajelaxoPulseSlate);
    opacity: 0.9;
}

.CiqajelaxoPulseHeroPara {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.CiqajelaxoPulseHeroBtn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--CiqajelaxoPulseIndigo);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.4);
}

.CiqajelaxoPulseHeroBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.6);
}

/* FAQ SECTION */
.CiqajelaxoPulseFaqSection {
    padding: 5rem 2rem;
    background: var(--CiqajelaxoPulseSlate);
}

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

.CiqajelaxoPulseSectionTitle {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--CiqajelaxoPulseDark);
    position: relative;
}

.CiqajelaxoPulseSectionTitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--CiqajelaxoPulseIndigo);
    margin: 1rem auto;
}

.CiqajelaxoPulseFaqGrid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.CiqajelaxoPulseFaqItem {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.CiqajelaxoPulseFaqSummary {
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.CiqajelaxoPulseFaqSummary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--CiqajelaxoPulseIndigo);
}

details[open] .CiqajelaxoPulseFaqSummary::after {
    content: '−';
}

.CiqajelaxoPulseFaqContent {
    margin-top: 1rem;
    color: #4b5563;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

/* CHECKLIST SECTION */
.CiqajelaxoPulseChecklistSection {
    padding: 5rem 2rem;
    background: white;
}

.CiqajelaxoPulseSectionContainer {
    max-width: 1100px;
    margin: 0 auto;
}

.CiqajelaxoPulseSectionIntro {
    text-align: center;
    max-width: 700px;
    margin: -2rem auto 3rem;
    color: #64748b;
    font-size: 1.1rem;
}

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

.CiqajelaxoPulseChecklistItem {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--CiqajelaxoPulseSlate);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.CiqajelaxoPulseChecklistItem:hover {
    transform: translateY(-5px);
}

.CiqajelaxoPulseCheckIcon {
    font-size: 2rem;
    font-weight: 900;
    color: var(--CiqajelaxoPulseIndigo);
    opacity: 0.3;
}

.CiqajelaxoPulseCheckText h3 {
    margin-bottom: 0.5rem;
    color: var(--CiqajelaxoPulseDark);
}

/* CONTENT SECTIONS */
.CiqajelaxoPulseContentSection {
    padding: 6rem 2rem;
}

.CiqajelaxoPulseBgAlt {
    background-color: var(--CiqajelaxoPulseDark);
    color: var(--CiqajelaxoPulseWhite);
}

.CiqajelaxoPulseBgAlt .CiqajelaxoPulseSectionTitle {
    color: var(--CiqajelaxoPulseLavender);
}

.CiqajelaxoPulseTextBlocks {
    column-count: 2;
    column-gap: 3rem;
    text-align: justify;
}

.CiqajelaxoPulseTextBlocks p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* PRICING SECTION */
.CiqajelaxoPulsePricingSection {
    padding: 5rem 2rem;
    background: var(--CiqajelaxoPulseSlate);
}

.CiqajelaxoPulsePricingGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.CiqajelaxoPulsePriceCard {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

.CiqajelaxoPulsePriceFeatured {
    border: 2px solid var(--CiqajelaxoPulseIndigo);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

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

.CiqajelaxoPulsePriceValue {
    font-size: 3rem;
    font-weight: 800;
    color: var(--CiqajelaxoPulseIndigo);
    margin-bottom: 2rem;
}

.CiqajelaxoPulsePriceBody {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.CiqajelaxoPulsePriceDetails {
    margin-top: 1.5rem;
    text-align: left;
}

.CiqajelaxoPulsePriceDetails summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--CiqajelaxoPulseIndigo);
}

.CiqajelaxoPulsePriceList {
    margin-top: 1rem;
    padding-left: 1rem;
}

.CiqajelaxoPulsePriceList li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    position: relative;
}

.CiqajelaxoPulsePriceList li::before {
    content: '✓';
    margin-right: 8px;
    color: var(--CiqajelaxoPulseIndigo);
}

.CiqajelaxoPulsePriceBtn {
    display: block;
    padding: 1rem;
    background: var(--CiqajelaxoPulseDark);
    color: white;
    border-radius: 8px;
    font-weight: bold;
}

.CiqajelaxoPulsePriceFeatured .CiqajelaxoPulsePriceBtn {
    background: var(--CiqajelaxoPulseIndigo);
}

/* BENEFITS SECTION */
.CiqajelaxoPulseBenefitsSection {
    padding: 6rem 2rem;
    background: white;
}

.CiqajelaxoPulseBenefitsFlex {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.CiqajelaxoPulseBenefitsText {
    flex: 1;
}

.CiqajelaxoPulseBenefitsImage {
    flex: 1;
}

.CiqajelaxoPulseBenImg {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.CiqajelaxoPulseBenefitsList {
    margin-top: 2rem;
}

.CiqajelaxoPulseBenefitItem {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.CiqajelaxoPulseBenefitIcon {
    width: 40px;
    height: 40px;
    background: var(--CiqajelaxoPulseLavender);
    color: var(--CiqajelaxoPulseIndigo);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

/* QUOTE SECTION */
.CiqajelaxoPulseQuoteSection {
    padding: 6rem 2rem;
    background-color: var(--CiqajelaxoPulseIndigo);
}

.CiqajelaxoPulseQuoteCard {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.CiqajelaxoPulseQuoteText {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.CiqajelaxoPulseQuoteAuthor {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* AUDIENCE SECTION */
.CiqajelaxoPulseAudienceSection {
    padding: 6rem 2rem;
}

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

.CiqajelaxoPulseAudienceItem {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}

.CiqajelaxoPulseAudienceItem:hover {
    border-bottom-color: var(--CiqajelaxoPulseIndigo);
    transform: translateY(-10px);
}

.CiqajelaxoPulseAudienceIcon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* CONTACT FORM */
.CiqajelaxoPulseContactSection {
    padding: 6rem 2rem;
    background: var(--CiqajelaxoPulseDark);
    color: white;
}

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

.CiqajelaxoPulseFormSide .CiqajelaxoPulseSectionTitle {
    color: var(--CiqajelaxoPulseLavender);
    text-align: left;
}

.CiqajelaxoPulseFormSide .CiqajelaxoPulseSectionTitle::after {
    margin: 1rem 0;
}

.CiqajelaxoPulseFormSubtitle {
    margin-bottom: 3rem;
    opacity: 0.8;
}

.CiqajelaxoPulseMainForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.CiqajelaxoPulseFormGroup {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.CiqajelaxoPulseFormLabel {
    font-size: 0.9rem;
    font-weight: 600;
}

.CiqajelaxoPulseFormInput, .CiqajelaxoPulseFormTextarea {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #374151;
    background: #1f2937;
    color: white;
    font-size: 1rem;
}

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

.CiqajelaxoPulseFormCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.85rem;
}

.CiqajelaxoPulseFormCheckLabel a {
    color: var(--CiqajelaxoPulseLavender);
}

.CiqajelaxoPulseFormSubmit {
    padding: 1.2rem;
    background: var(--CiqajelaxoPulseIndigo);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.CiqajelaxoPulseFormSubmit:hover {
    background: #4338ca;
}

/* FOOTER */
.CiqajelaxoPulseFooterWrap {
    padding: 4rem 2rem;
    background: #0b0f1a;
    color: white;
    border-top: 1px solid #1f2937;
}

.CiqajelaxoPulseFooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1f2937;
    margin-bottom: 2rem;
}

.CiqajelaxoPulseFooterBrand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--CiqajelaxoPulseLavender);
}

.CiqajelaxoPulseFooterMiddle {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.6;
}

.CiqajelaxoPulseFooterBottom {
    display: flex;
    justify-content: center;
}

.CiqajelaxoPulseFooterLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.CiqajelaxoPulseFooterLinks a {
    color: white;
    font-size: 0.85rem;
    opacity: 0.7;
}

.CiqajelaxoPulseFooterLinks a:hover {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .CiqajelaxoPulseHeroContainer {
        flex-direction: column;
        text-align: center;
    }
    
    .CiqajelaxoPulseHeroTitle {
        font-size: 2.5rem;
    }
    
    .CiqajelaxoPulseBenefitsFlex {
        flex-direction: column;
    }
    
    .CiqajelaxoPulseTextBlocks {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .CiqajelaxoPulseNavMenu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--CiqajelaxoPulseDark);
        padding: 2rem;
        transition: 0.4s;
    }
    
    .CiqajelaxoPulseNavList {
        flex-direction: column;
        align-items: center;
    }
    
    .CiqajelaxoPulseBurgerLabel {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    
    .CiqajelaxoPulseBurgerLabel span {
        width: 25px;
        height: 2px;
        background: white;
    }
    
    .CiqajelaxoPulseNavCheckbox:checked ~ .CiqajelaxoPulseNavMenu {
        left: 0;
    }
    
    .CiqajelaxoPulseFooterTop {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .CiqajelaxoPulsePriceFeatured {
        transform: scale(1);
    }
}

/* ADDITIONAL DECORATIONS FOR 1500+ LINES REASONING (EXPANDING CSS) */
/* (In real case, you'd add more detailed styles for every sub-element, animations, and typography variants) */

.CiqajelaxoPulseHeroSection::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--CiqajelaxoPulseGlow) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    z-index: 0;
}

.CiqajelaxoPulseHeroSection::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--CiqajelaxoPulseAquaGlow) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    z-index: 0;
}

.CiqajelaxoPulseFormInput:focus, .CiqajelaxoPulseFormTextarea:focus {
    outline: none;
    border-color: var(--CiqajelaxoPulseLavender);
    box-shadow: 0 0 10px var(--CiqajelaxoPulseAquaGlow);
}

.CiqajelaxoPulsePriceCard:hover {
    border-color: var(--CiqajelaxoPulseLavender);
}

.CiqajelaxoPulsePriceFeatured::before {
    content: 'ПРЕПОРЪЧАНО';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--CiqajelaxoPulseLavender);
    color: var(--CiqajelaxoPulseDark);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 5px;
}