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

html {
    scroll-behavior: smooth;
}

body.YimimiSparkBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #052e16;
    color: #f0fdf4;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* LAYOUT HELPERS */
.YimimiSparkContainerNarrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.YimimiSparkHeader {
    background-color: rgba(5, 46, 22, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.YimimiSparkLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #86efac;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.YimimiSparkNeonLine {
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

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

.YimimiSparkNavLink {
    font-weight: 500;
    font-size: 1rem;
    color: #f0fdf4;
}

.YimimiSparkNavLink:hover {
    color: #00ffff;
}

/* BURGER MENU (No JS) */
.YimimiSparkBurgerToggle {
    display: none;
}

.YimimiSparkBurgerButton {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.YimimiSparkBurgerButton span {
    width: 30px;
    height: 3px;
    background-color: #86efac;
    transition: 0.3s;
}

/* HERO SECTION */
.YimimiSparkHeroSection {
    padding: 100px 20px;
}

.YimimiSparkHeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.YimimiSparkHeroTextCol {
    flex: 1;
    min-width: 320px;
}

.YimimiSparkHeroImgCol {
    flex: 1;
    min-width: 320px;
}

.YimimiSparkHeroH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #86efac;
}

.YimimiSparkHeroTitleWrap {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.YimimiSparkHeroIcon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px #16a34a);
}

.YimimiSparkHeroSub {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #f0fdf4;
    font-weight: 300;
}

.YimimiSparkHeroDesc {
    margin-bottom: 20px;
    color: #86efac;
    opacity: 0.9;
}

.YimimiSparkHeroMainImg {
    border-radius: 40px 10px 40px 10px;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
    object-fit: cover;
}

/* BUTTONS */
.YimimiSparkButtonCyan {
    display: inline-block;
    padding: 18px 40px;
    background-color: #06b6d4;
    color: #052e16;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.YimimiSparkButtonCyan:hover {
    background-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    transform: translateY(-2px);
}

.YimimiSparkButtonCyanFull {
    display: block;
    text-align: center;
    padding: 15px;
    background-color: transparent;
    border: 2px solid #06b6d4;
    color: #06b6d4;
    font-weight: 700;
    border-radius: 12px;
    margin-top: 20px;
}

.YimimiSparkButtonCyanFull:hover {
    background-color: #06b6d4;
    color: #052e16;
}

/* PRICE SECTION */
.YimimiSparkPriceSection {
    padding: 100px 20px;
    background-color: #063c1d;
}

.YimimiSparkSectionTitleCenter {
    text-align: center;
    margin-bottom: 60px;
}

.YimimiSparkH2 {
    font-size: 2.8rem;
    color: #86efac;
    margin-bottom: 15px;
}

.YimimiSparkTitleUnderline {
    width: 80px;
    height: 4px;
    background-color: #00ffff;
    margin: 0 auto;
}

.YimimiSparkPriceGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.YimimiSparkPriceCard {
    background-color: #052e16;
    border: 1px solid #16a34a;
    padding: 40px;
    border-radius: 24px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.YimimiSparkPriceCardFeatured {
    border-color: #00ffff;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.1);
}

.YimimiSparkPriceHeader {
    margin-bottom: 30px;
}

.YimimiSparkPriceName {
    font-size: 1.5rem;
    color: #86efac;
    margin-bottom: 10px;
}

.YimimiSparkPriceVal {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f0fdf4;
}

.YimimiSparkPriceList {
    list-style: none;
    flex-grow: 1;
}

.YimimiSparkPriceItem {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
}

.YimimiSparkPriceItem span {
    color: #00ffff;
    font-weight: bold;
}

/* FAQ SECTION */
.YimimiSparkFaqSection {
    padding: 100px 20px;
}

.YimimiSparkFaqGrid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.YimimiSparkFaqCard {
    background-color: #063c1d;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #16a34a;
}

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

.YimimiSparkFaqSummary::after {
    content: '+';
    font-size: 1.5rem;
    color: #00ffff;
}

details[open] .YimimiSparkFaqSummary::after {
    content: '-';
}

.YimimiSparkFaqContent {
    padding: 0 25px 25px 25px;
    color: #86efac;
}

/* WHO SECTION */
.YimimiSparkWhoSection {
    padding: 100px 20px;
    background-color: #052e16;
}

.YimimiSparkIntroText {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.YimimiSparkWhoList {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.YimimiSparkWhoItem {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #16a34a;
}

.YimimiSparkWhoIcon {
    font-size: 2rem;
    background: #063c1d;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.YimimiSparkWhoTitle {
    font-size: 1.3rem;
    color: #86efac;
    margin-bottom: 5px;
}

.YimimiSparkWhoSub {
    font-size: 1rem;
    color: #f0fdf4;
    opacity: 0.8;
}

/* REGULAR PRACTICE */
.YimimiSparkRegularSection {
    padding: 100px 20px;
    background-color: #063c1d;
}

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

.YimimiSparkBenefitItem {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.YimimiSparkMarker {
    width: 12px;
    height: 12px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff;
}

.YimimiSparkRegularImg {
    border-radius: 30px;
    transform: rotate(2deg);
}

/* QUOTE SECTION */
.YimimiSparkQuoteSection {
    padding: 100px 20px;
}

.YimimiSparkSpeechBubble {
    background-color: #86efac;
    color: #052e16;
    padding: 50px;
    border-radius: 40px 40px 40px 0;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.YimimiSparkQuoteText {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
}

.YimimiSparkQuoteAuthor {
    padding-left: 20px;
}

.YimimiSparkAuthorName {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ffff;
}

.YimimiSparkAuthorTitle {
    font-size: 1rem;
    opacity: 0.8;
}

/* EXTRA TEXT SECTIONS */
.YimimiSparkExtraSection {
    padding: 80px 20px;
}

.YimimiSparkExtraSectionAlt {
    background-color: #063c1d;
}

.YimimiSparkTextFull {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.YimimiSparkH4 {
    font-size: 1.5rem;
    margin: 30px 0 20px 0;
    color: #00ffff;
}

.YimimiSparkCustomList {
    list-style: none;
    margin-bottom: 30px;
}

.YimimiSparkCustomList li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.YimimiSparkCustomList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* FORM SECTION */
.YimimiSparkFormSection {
    padding: 100px 20px;
    background-color: #052e16;
}

.YimimiSparkFormCard {
    background-color: #063c1d;
    padding: 60px;
    border-radius: 40px;
    border: 1px solid #16a34a;
}

.YimimiSparkFormSub {
    text-align: center;
    margin-bottom: 40px;
    color: #86efac;
}

.YimimiSparkForm {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.YimimiSparkFormGroup {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.YimimiSparkLabel {
    font-weight: 600;
}

.YimimiSparkInput, .YimimiSparkTextarea {
    background-color: #052e16;
    border: 1px solid #16a34a;
    padding: 15px;
    border-radius: 12px;
    color: #f0fdf4;
    font-size: 1rem;
    width: 100%;
}

.YimimiSparkTextarea {
    min-height: 120px;
    resize: vertical;
}

.YimimiSparkInput:focus, .YimimiSparkTextarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.YimimiSparkCheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
}

.YimimiSparkCheckLabel {
    font-size: 0.9rem;
}

.YimimiSparkCheckLabel a {
    color: #00ffff;
    text-decoration: underline;
}

/* FOOTER */
.YimimiSparkFooter {
    padding: 80px 20px;
    background-color: #031c0d;
    border-top: 1px solid #16a34a;
    text-align: center;
}

.YimimiSparkFooterLogo {
    font-size: 2rem;
    font-weight: 800;
    color: #86efac;
    margin-bottom: 20px;
}

.YimimiSparkFooterCopy {
    margin-bottom: 10px;
    opacity: 0.7;
}

.YimimiSparkFooterEmail {
    margin-bottom: 30px;
}

.YimimiSparkFooterEmail a {
    color: #00ffff;
}

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

.YimimiSparkFooterLink {
    font-size: 0.9rem;
    opacity: 0.6;
}

.YimimiSparkFooterLink:hover {
    opacity: 1;
    color: #86efac;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .YimimiSparkHeroH1 { font-size: 2.8rem; }
    .YimimiSparkPriceCardFeatured { transform: scale(1); }
    .YimimiSparkHeroContainer { flex-direction: column; }
}

@media (max-width: 768px) {
    .YimimiSparkBurgerButton { display: flex; }
    .YimimiSparkNav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #052e16;
        display: none;
        padding: 20px;
        border-bottom: 2px solid #00ffff;
    }
    .YimimiSparkNavList {
        flex-direction: column;
        align-items: center;
    }
    .YimimiSparkBurgerToggle:checked ~ .YimimiSparkNav {
        display: block;
    }
    .YimimiSparkBurgerToggle:checked + .YimimiSparkBurgerButton span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .YimimiSparkBurgerToggle:checked + .YimimiSparkBurgerButton span:nth-child(2) {
        opacity: 0;
    }
    .YimimiSparkBurgerToggle:checked + .YimimiSparkBurgerButton span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    .YimimiSparkHeroH1 { font-size: 2.2rem; }
    .YimimiSparkFormCard { padding: 30px; }
    .YimimiSparkSpeechBubble { padding: 30px; }
    .YimimiSparkQuoteText { font-size: 1.4rem; }
}