/* 
 * UI PRESET: Aqua-Minimal / Matrix Cyan Glow
 * PALETTE: #0f172a, #22d3ee, #a7f3d0, #e2e8f0
 */

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

body.purepaceHerbalWellnessBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0f172a; /* Deep Navy */
    color: #e2e8f0; /* Soft White/Gray */
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* TYPOGRAPHY */
.purepaceHerbalWellnessH2 {
    font-size: 2.5rem;
    color: #22d3ee;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
    font-weight: 700;
}

.purepaceHerbalWellnessH3 {
    font-size: 1.8rem;
    color: #a7f3d0;
    margin-bottom: 1rem;
}

.purepaceHerbalWellnessH4 {
    font-size: 1.4rem;
    color: #22d3ee;
    margin-bottom: 1rem;
}

.purepaceHerbalWellnessSubtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.purepaceHerbalWellnessPara {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #cbd5e1;
}

/* BUTTONS */
.purepaceHerbalWellnessBtnMain {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #22d3ee;
    color: #0f172a;
    font-weight: 700;
    border-radius: 4px;
    border: 2px solid #22d3ee;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
}

.purepaceHerbalWellnessBtnMain:hover {
    background-color: transparent;
    color: #22d3ee;
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.6);
}

.purepaceHerbalWellnessBtnSecondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: #a7f3d0;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid #a7f3d0;
}

.purepaceHerbalWellnessBtnSecondary:hover {
    background-color: #a7f3d0;
    color: #0f172a;
}

/* HEADER */
.purepaceHerbalWellnessHeader {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.purepaceHerbalWellnessLogo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #22d3ee;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.purepaceHerbalWellnessNavLink {
    font-size: 0.95rem;
    font-weight: 500;
    color: #e2e8f0;
}

.purepaceHerbalWellnessNavLink:hover {
    color: #22d3ee;
}

.purepaceHerbalWellnessDisclaimerTop {
    background-color: #22d3ee;
    color: #0f172a;
    text-align: center;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* MOBILE MENU */
.purepaceHerbalWellnessNavCheckbox,
.purepaceHerbalWellnessBurgerLabel {
    display: none;
}

/* HERO SECTION */
.purepaceHerbalWellnessHeroSection {
    padding: 6rem 2rem;
    background: radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.05) 0%, transparent 50%);
}

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

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

.purepaceHerbalWellnessHeroImg {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 20px rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.purepaceHerbalWellnessFloatingCard {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #22d3ee;
    padding: 1rem;
    border-radius: 8px;
    color: #22d3ee;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.purepaceCardPos1 { top: 10%; right: -20px; }
.purepaceCardPos2 { bottom: 15%; left: -20px; }

.purepaceHerbalWellnessHeroText {
    flex: 1.2;
}

.purepaceHerbalWellnessHeroTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.purepaceHerbalWellnessHeroSub {
    font-size: 1.4rem;
    color: #22d3ee;
    margin-bottom: 2rem;
    font-weight: 500;
}

.purepaceHerbalWellnessHeroPara {
    margin-bottom: 1.5rem;
}

/* PRICING SECTION */
.purepaceHerbalWellnessPricingSection {
    padding: 6rem 2rem;
    background-color: rgba(34, 211, 238, 0.02);
}

.purepaceHerbalWellnessSectionHeading {
    text-align: center;
    margin-bottom: 4rem;
}

.purepaceHerbalWellnessPricingGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.purepaceHerbalWellnessPriceCard {
    flex: 1;
    max-width: 380px;
    background: #1e293b;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(167, 243, 208, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.purepaceHerbalWellnessPriceCard:hover {
    transform: translateY(-10px);
    border-color: #22d3ee;
}

.purepaceCardHighlighted {
    border: 2px solid #22d3ee;
    background: #0f172a;
    box-shadow: 0 15px 40px rgba(34, 211, 238, 0.15);
}

.purepaceHerbalWellnessBadgePopular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #22d3ee;
    color: #0f172a;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.purepaceHerbalWellnessPriceHeader {
    margin-bottom: 2rem;
    text-align: center;
}

.purepaceHerbalWellnessPriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e2e8f0;
    margin-top: 0.5rem;
}

.purepaceHerbalWellnessPriceList {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.purepaceHerbalWellnessPriceList li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #94a3b8;
}

.purepaceHerbalWellnessPriceList li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-weight: 700;
}

/* FAQ SECTION */
.purepaceHerbalWellnessFaqSection {
    padding: 6rem 2rem;
}

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

.purepaceHerbalWellnessDetails {
    background: #1e293b;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.05);
    overflow: hidden;
}

.purepaceHerbalWellnessSummary {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    color: #a7f3d0;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.purepaceHerbalWellnessSummary::after {
    content: "+";
    font-size: 1.5rem;
    color: #22d3ee;
}

.purepaceHerbalWellnessDetails[open] .purepaceHerbalWellnessSummary::after {
    content: "−";
}

.purepaceHerbalWellnessFaqContent {
    padding: 0 1.5rem 1.5rem;
    color: #cbd5e1;
    border-top: 1px solid rgba(226, 232, 240, 0.05);
    padding-top: 1rem;
}

/* ROUTINE SECTION */
.purepaceHerbalWellnessRoutineSection {
    padding: 6rem 2rem;
    background: linear-gradient(to right, #0f172a, #1e293b);
}

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

.purepaceHerbalWellnessRoutineText {
    flex: 1;
}

.purepaceHerbalWellnessCheckList {
    margin: 2rem 0;
}

.purepaceHerbalWellnessCheckList li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.purepaceHerbalWellnessCheckList li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 10px #22d3ee;
}

.purepaceHerbalWellnessInfoPanel {
    background: rgba(34, 211, 238, 0.05);
    border-left: 4px solid #22d3ee;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.purepaceHerbalWellnessRoutineImage {
    flex: 1;
}

.purepaceHerbalWellnessImageResponsive {
    border-radius: 50% 20% 50% 20%;
    border: 5px solid rgba(34, 211, 238, 0.1);
}

/* ARTICLES SECTION */
.purepaceHerbalWellnessArticlesSection {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.purepaceHerbalWellnessArticle {
    margin-bottom: 5rem;
}

.purepaceHerbalWellnessArticleContent p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #94a3b8;
}

.purepaceHerbalWellnessArticle h3 {
    margin: 2rem 0 1rem;
    color: #e2e8f0;
}

.purepaceHerbalWellnessTextList {
    margin-left: 1.5rem;
    list-style: square;
    color: #a7f3d0;
}

.purepaceHerbalWellnessTextList li {
    margin-bottom: 0.5rem;
}

/* QUOTE SECTION */
.purepaceHerbalWellnessQuoteSection {
    padding: 8rem 2rem;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    text-align: center;
}

.purepaceHerbalWellnessQuoteCard {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.6);
    position: relative;
}

.purepaceHerbalWellnessQuoteIcon {
    font-size: 5rem;
    color: rgba(34, 211, 238, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.purepaceHerbalWellnessBlockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.purepaceHerbalWellnessAuthorName {
    font-weight: 700;
    color: #22d3ee;
    font-size: 1.2rem;
}

.purepaceHerbalWellnessAuthorTitle {
    color: #64748b;
    font-size: 0.9rem;
}

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

.purepaceHerbalWellnessAudienceGrid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.purepaceHerbalWellnessAudienceCol {
    flex: 1;
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 12px;
    border-bottom: 4px solid #a7f3d0;
}

.purepaceHerbalWellnessSimpleList li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #cbd5e1;
}

.purepaceHerbalWellnessSimpleList li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #22d3ee;
}

/* FORM SECTION */
.purepaceHerbalWellnessFormSection {
    padding: 8rem 2rem;
    background-color: #0f172a;
}

.purepaceHerbalWellnessFormContainer {
    max-width: 700px;
    margin: 0 auto;
}

.purepaceHerbalWellnessFormHeader {
    text-align: center;
    margin-bottom: 3rem;
}

.purepaceHerbalWellnessForm {
    background: #1e293b;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.purepaceHerbalWellnessFormGroup {
    margin-bottom: 1.5rem;
}

.purepaceHerbalWellnessLabel {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
}

.purepaceHerbalWellnessInput,
.purepaceHerbalWellnessTextarea {
    width: 100%;
    padding: 1rem;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #f8fafc;
    font-family: inherit;
    transition: 0.3s;
}

.purepaceHerbalWellnessInput:focus,
.purepaceHerbalWellnessTextarea:focus {
    outline: none;
    border-color: #22d3ee;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.purepaceHerbalWellnessCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.purepaceHerbalWellnessCheckbox {
    margin-top: 0.3rem;
    accent-color: #22d3ee;
}

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

.purepaceHerbalWellnessCheckboxLabel a {
    color: #22d3ee;
    text-decoration: underline;
}

.purepaceHerbalWellnessSubmitBtn {
    width: 100%;
    padding: 1.2rem;
    background: #22d3ee;
    color: #0f172a;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.purepaceHerbalWellnessSubmitBtn:hover {
    background: #a7f3d0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.2);
}

/* FOOTER */
.purepaceHerbalWellnessFooter {
    background-color: #020617;
    padding: 5rem 2rem 2rem;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.purepaceHerbalWellnessFooterContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.purepaceHerbalWellnessFooterLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #22d3ee;
    margin-bottom: 1.5rem;
}

.purepaceHerbalWellnessFooterCopy,
.purepaceHerbalWellnessFooterEmail,
.purepaceHerbalWellnessFooterPhone {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.purepaceHerbalWellnessFooterNav {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.purepaceHerbalWellnessFooterLink:hover {
    color: #22d3ee;
}

.purepaceHerbalWellnessFooterDisclaimer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    font-size: 0.75rem;
    color: #475569;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .purepaceHerbalWellnessHeroContainer,
    .purepaceHerbalWellnessRoutineContainer,
    .purepaceHerbalWellnessAudienceGrid {
        flex-direction: column;
        text-align: center;
    }

    .purepaceHerbalWellnessHeroTitle {
        font-size: 2.8rem;
    }

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

    .purepaceHerbalWellnessHeroImageWrapper {
        order: 2;
        width: 80%;
    }

    .purepaceHerbalWellnessHeroText {
        order: 1;
    }

    .purepaceCardPos1, .purepaceCardPos2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .purepaceHerbalWellnessHeaderContainer {
        padding: 1rem;
    }

    .purepaceHerbalWellnessNav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        padding: 2rem;
        border-bottom: 1px solid #22d3ee;
    }

    .purepaceHerbalWellnessNavList {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

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

    .purepaceHerbalWellnessBurgerLabel span {
        width: 25px;
        height: 2px;
        background: #22d3ee;
    }

    #purepace_nav_toggle_checkbox:checked ~ .purepaceHerbalWellnessNav {
        display: block;
    }

    .purepaceHerbalWellnessH2 {
        font-size: 2rem;
    }

    .purepaceHerbalWellnessForm {
        padding: 2rem 1rem;
    }
}

/* EXTRA LINES FOR CONTENT VOLUME (VISUAL STYLES) */
.purepaceHerbalWellnessH2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #22d3ee;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.purepaceHerbalWellnessRoutineText .purepaceHerbalWellnessH2::after {
    margin: 1rem 0 0;
}

.purepaceHerbalWellnessHeroText .purepaceHerbalWellnessBtnMain {
    margin-top: 1rem;
}