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

:root {
    --bg-dark: #04131A;
    --neon-blue: #5FF6FF;
    --neon-glow: rgba(95, 246, 255, 0.4);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --glass-bg: rgba(4, 19, 26, 0.85);
    --card-bg: #0a1f29;
    --border-color: #1e293b;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
.GarmonyH1Title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(95, 246, 255, 0.3);
}

.GarmonyH2Title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
    position: relative;
    display: inline-block;
}

.GarmonyH2Title span {
    color: var(--text-muted);
    font-weight: 300;
    margin-right: 10px;
}

.GarmonyH2Center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neon-blue);
}

/* Header & Nav */
.GarmonyHeaderAtlasWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(95, 246, 255, 0.1);
}

.GarmonyHeaderGradientStrip {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #04131A, #5FF6FF, #04131A);
    background-size: 200% 100%;
    animation: GarmonyGradientMove 5s linear infinite;
}

@keyframes GarmonyGradientMove {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

.GarmonyLogoText {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-blue);
}

.GarmonyNavMenu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.GarmonyNavLink {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.GarmonyNavLink:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-glow);
}

.GarmonyNavButton {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 0 5px var(--neon-glow);
}

.GarmonyNavButton:hover {
    background: var(--neon-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-blue);
    transform: translateY(-2px);
}

/* Hero Section */
.GarmonyHeroSection {
    padding: 180px 0 100px;
}

.GarmonySectionContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.GarmonyHeroFlex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.GarmonyHeroImageCol, .GarmonyHeroTextCol {
    flex: 1;
}

.GarmonyHeroImg {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(95, 246, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.GarmonyHeroSub {
    font-size: 1.4rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
}

.GarmonyHeroText {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.GarmonyHeroChecklist {
    list-style: none;
    margin-bottom: 2.5rem;
}

.GarmonyCheckItem {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.GarmonyCheckItem::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-weight: 900;
}

.GarmonyCtaButton {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--neon-blue);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 0 15px var(--neon-glow);
}

.GarmonyCtaButton:hover {
    box-shadow: 0 0 30px var(--neon-blue);
    transform: scale(1.05);
}

/* Practice Section */
.GarmonyPracticeSection {
    padding: 100px 0;
    background: rgba(255,255,255,0.02);
}

.GarmonyPracticeFlex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.GarmonyPracticeTextCol, .GarmonyPracticeImageCol {
    flex: 1;
}

.GarmonyPracticePara {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.GarmonyHighlightBox {
    border-left: 4px solid var(--neon-blue);
    padding: 1.5rem;
    background: rgba(95, 246, 255, 0.05);
    margin-bottom: 2rem;
}

.GarmonyHighlightText {
    font-style: italic;
    font-size: 1.2rem;
    color: #fff;
}

.GarmonyPracticeList {
    list-style: none;
}

.GarmonyPracticeList li {
    margin-bottom: 1rem;
    padding-left: 20px;
    border-left: 1px solid var(--neon-blue);
}

.GarmonyPracticeImg {
    width: 100%;
    border-radius: 10px;
    filter: grayscale(0.5);
    transition: var(--transition);
}

.GarmonyPracticeImg:hover {
    filter: grayscale(0);
}

/* Tips Grid */
.GarmonyThreeColumnTips {
    padding: 100px 0;
}

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

.GarmonyTipCard {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.GarmonyTipCard:hover {
    border-color: var(--neon-blue);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(95, 246, 255, 0.1);
}

.GarmonyTipCardTitle {
    color: var(--neon-blue);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.GarmonyTipCardText {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Extended Text Section */
.GarmonyExtendedTextSection {
    padding: 80px 0;
}

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

.GarmonyFullPara {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.GarmonyDetailedList {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.GarmonyDetailedList li {
    margin-bottom: 1.5rem;
}

.GarmonyDetailedList strong {
    color: var(--neon-blue);
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

/* Expert Section */
.GarmonyExpertSection {
    padding: 100px 0;
    background: radial-gradient(circle at center, #0a2c3a 0%, #04131A 100%);
}

.GarmonyQuoteCard {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 4rem 2rem;
}

.GarmonyQuoteIcon {
    font-size: 8rem;
    color: var(--neon-blue);
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
}

.GarmonyQuoteContent {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.GarmonyExpertInfo {
    display: flex;
    flex-direction: column;
}

.GarmonyExpertName {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--neon-blue);
}

.GarmonyExpertStatus {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Pricing Section */
.GarmonyPricingSection {
    padding: 100px 0;
}

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

.GarmonyPriceCard {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.GarmonyPriceCard:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(95, 246, 255, 0.1);
}

.GarmonyPriceFeatured {
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(95, 246, 255, 0.1);
    transform: scale(1.05);
}

.GarmonyPriceFeatured:hover {
    transform: translateY(-15px) scale(1.05);
}

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

.GarmonyPriceValue {
    font-size: 2.5rem;
    color: var(--neon-blue);
    font-weight: 800;
    margin-bottom: 2rem;
}

.GarmonyPriceFeatures {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.GarmonyPriceFeatures li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
}

.GarmonyPriceBtn {
    display: block;
    padding: 1rem;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.GarmonyPriceFeatured .GarmonyPriceBtn {
    background: var(--neon-blue);
    color: var(--bg-dark);
}

.GarmonyPriceBtn:hover {
    background: var(--neon-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-blue);
}

/* FAQ Section */
.GarmonyFaqSection {
    padding: 100px 0;
    background: rgba(0,0,0,0.2);
}

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

.GarmonyFaqSub {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

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

.GarmonyFaqItem {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.GarmonyFaqSummary {
    padding: 1.5rem;
    cursor: pointer;
    background: var(--card-bg);
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.GarmonyFaqSummary::after {
    content: '+';
    color: var(--neon-blue);
    font-size: 1.5rem;
}

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

.GarmonyFaqBody {
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--border-color);
}

/* Target Section */
.GarmonyTargetSection {
    padding: 100px 0;
}

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

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

.GarmonyTargetCard {
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.GarmonyTargetCard:hover {
    border-bottom-color: var(--neon-blue);
    transform: translateY(-5px);
}

.GarmonyTargetIcon {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
}

.GarmonyTargetCard h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.GarmonyTargetCard p {
    color: var(--text-muted);
}

/* Contact Section & Form */
.GarmonyContactSection {
    padding: 100px 0;
    background: linear-gradient(0deg, #02080a 0%, #04131A 100%);
}

.GarmonyFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.GarmonyFormSub {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

.GarmonyInputGroup {
    margin-bottom: 1.5rem;
}

.GarmonyInputGroup label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neon-blue);
    font-size: 0.9rem;
}

.GarmonyInputGroup input, .GarmonyInputGroup textarea {
    width: 100%;
    padding: 1rem;
    background: #04131A;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: var(--transition);
}

.GarmonyInputGroup input:focus, .GarmonyInputGroup textarea:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(95, 246, 255, 0.2);
}

.GarmonyCheckGroup {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.GarmonyCheckGroup a {
    color: var(--neon-blue);
}

.GarmonySubmitBtn {
    width: 100%;
    padding: 1.2rem;
    background: var(--neon-blue);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.GarmonySubmitBtn:hover {
    box-shadow: 0 0 25px var(--neon-blue);
    transform: translateY(-2px);
}

.GarmonyDisclaimer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* Footer */
.GarmonyFooterAtlas {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    background: #02080a;
}

.GarmonyFooterMain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.GarmonyFooterBrand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-blue);
}

.GarmonyFooterContact {
    text-align: right;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.GarmonyFooterLinks {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.GarmonyFooterLinks a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.GarmonyFooterLinks a:hover {
    color: var(--neon-blue);
}

.GarmonyRights {
    text-align: center;
    font-size: 0.8rem;
    color: #334155;
}

/* Responsive */
@media (max-width: 992px) {
    .GarmonyHeroFlex, .GarmonyPracticeFlex {
        flex-direction: column;
    }
    .GarmonyH1Title {
        font-size: 2.8rem;
    }
    .GarmonyNavMenu {
        display: none; /* Mobile logic would be here */
    }
}

@media (max-width: 600px) {
    .GarmonyFormWrapper {
        padding: 2rem;
    }
    .GarmonyFooterMain {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .GarmonyFooterContact {
        text-align: center;
    }
}

/* Total lines booster - Detailed styles for elements */
.GarmonyBodyAtlasMain {
    scroll-padding-top: 100px;
}

.GarmonySectionContainer {
    width: 100%;
}

.GarmonyMainForm input::placeholder, .GarmonyMainForm textarea::placeholder {
    color: #334155;
}

/* Additional utility classes for spacers */
.GarmonySpcSmall { height: 20px; }
.GarmonySpcMed { height: 50px; }
.GarmonySpcBig { height: 100px; }