/*
    Theme: Dark Lava
    Base Background: #120014
    Primary Lava: #FF4FD8
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #120014;
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF4FD8;
    text-shadow: 0 0 10px rgba(255, 79, 216, 0.5);
}

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

ul {
    list-style: none;
}

/* Layout Containers */
.harmony-vexqe-9630-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.harmony-vexqe-9630-section-padding {
    padding: 100px 0;
}

/* Header & Nav */
.harmony-vexqe-9630-header {
    background: rgba(18, 0, 20, 0.95);
    border-bottom: 2px solid #FF4FD8;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 79, 216, 0.2);
}

.harmony-vexqe-9630-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.harmony-vexqe-9630-logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FF4FD8;
    letter-spacing: 3px;
}

.harmony-vexqe-9630-menu-list {
    display: flex;
    gap: 30px;
}

.harmony-vexqe-9630-menu-link:hover {
    color: #FF4FD8;
    text-shadow: 0 0 8px #FF4FD8;
}

/* Mobile Menu (No JS) */
.harmony-vexqe-9630-burger-check {
    display: none;
}

.harmony-vexqe-9630-burger-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.harmony-vexqe-9630-burger-line {
    width: 30px;
    height: 3px;
    background: #FF4FD8;
    border-radius: 2px;
}

/* Hero Section */
.harmony-vexqe-9630-hero-anchor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.harmony-vexqe-9630-anchor-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #FF4FD8;
    color: #FF4FD8;
    font-size: 0.9rem;
    border-radius: 5px;
}

.harmony-vexqe-9630-anchor-btn:hover {
    background: #FF4FD8;
    color: #120014;
    box-shadow: 0 0 15px #FF4FD8;
}

.harmony-vexqe-9630-hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.harmony-vexqe-9630-hero-image-box {
    flex: 1;
}

.harmony-vexqe-9630-hero-image-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: -10px 10px 30px rgba(255, 79, 216, 0.3);
    border: 1px solid #FF4FD8;
}

.harmony-vexqe-9630-hero-content {
    flex: 1;
}

.harmony-vexqe-9630-hero-h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.harmony-vexqe-9630-hero-sub {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #ff9fe8;
}

/* Pricing Section */
.harmony-vexqe-9630-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.harmony-vexqe-9630-price-card {
    background: rgba(40, 0, 45, 0.5);
    border: 2px solid #3d0042;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: 0.4s;
    overflow: hidden;
}

.harmony-vexqe-9630-price-card:hover {
    border-color: #FF4FD8;
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 79, 216, 0.2);
}

.harmony-vexqe-9630-card-lava-accent {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #FF4FD8, transparent);
    filter: blur(20px);
    opacity: 0.5;
}

.harmony-vexqe-9630-price-val {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
    color: #FF4FD8;
}

.harmony-vexqe-9630-price-old {
    text-decoration: line-through;
    color: #888;
    font-size: 1.1rem;
}

.harmony-vexqe-9630-feature-list {
    margin: 25px 0;
    text-align: left;
    font-size: 0.95rem;
}

.harmony-vexqe-9630-feature-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Expert Section */
.harmony-vexqe-9630-expert-box {
    background: #1a011d;
    border-left: 5px solid #FF4FD8;
    padding: 50px;
    border-radius: 0 20px 20px 0;
}

.harmony-vexqe-9630-quote-text {
    font-style: italic;
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #fce4ff;
}

.harmony-vexqe-9630-expert-details summary {
    cursor: pointer;
    font-weight: bold;
    color: #FF4FD8;
    padding: 15px 0;
    border-top: 1px solid #3d0042;
}

/* Practice Benefits */
.harmony-vexqe-9630-benefit-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.harmony-vexqe-9630-benefit-row.reverse {
    flex-direction: row-reverse;
}

.harmony-vexqe-9630-benefit-img {
    flex: 1;
}

.harmony-vexqe-9630-benefit-img img {
    width: 100%;
    border-radius: 30px;
    filter: sepia(30%) hue-rotate(280deg);
}

.harmony-vexqe-9630-benefit-text {
    flex: 1;
}

/* For Whom Section */
.harmony-vexqe-9630-for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.harmony-vexqe-9630-for-item {
    border: 1px solid #3d0042;
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.harmony-vexqe-9630-lava-line {
    height: 2px;
    width: 50px;
    background: #FF4FD8;
    margin-bottom: 15px;
    box-shadow: 0 0 5px #FF4FD8;
}

/* FAQ */
.harmony-vexqe-9630-faq-item {
    margin-bottom: 15px;
}

.harmony-vexqe-9630-faq-item summary {
    background: #25012a;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    list-style: none;
    border: 1px solid #3d0042;
    font-weight: 600;
}

.harmony-vexqe-9630-faq-item details[open] summary {
    border-color: #FF4FD8;
}

.harmony-vexqe-9630-faq-content {
    padding: 20px;
    background: rgba(61, 0, 66, 0.2);
    border-radius: 0 0 10px 10px;
}

/* Form */
.harmony-vexqe-9630-form-wrap {
    max-width: 700px;
    margin: 50px auto;
    background: #1a011d;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #FF4FD8;
    box-shadow: 0 0 30px rgba(255, 79, 216, 0.1);
}

.harmony-vexqe-9630-input-group {
    margin-bottom: 25px;
}

.harmony-vexqe-9630-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #FF4FD8;
}

.harmony-vexqe-9630-input, .harmony-vexqe-9630-textarea {
    width: 100%;
    background: #000;
    border: 1px solid #3d0042;
    padding: 15px;
    color: #fff;
    border-radius: 8px;
    outline: none;
}

.harmony-vexqe-9630-input:focus, .harmony-vexqe-9630-textarea:focus {
    border-color: #FF4FD8;
}

.harmony-vexqe-9630-submit-btn {
    width: 100%;
    padding: 18px;
    background: #FF4FD8;
    color: #120014;
    border: none;
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    animation: harmony-glow 2s infinite alternate;
}

@keyframes harmony-glow {
    from { box-shadow: 0 0 10px #FF4FD8; }
    to { box-shadow: 0 0 25px #FF4FD8; }
}

/* CTA & Generic Buttons */
.harmony-vexqe-9630-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FF4FD8;
    color: #120014;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 79, 216, 0.4);
}

/* Extra Content Blocks */
.harmony-vexqe-9630-content-block {
    margin-bottom: 80px;
}

.harmony-vexqe-9630-content-block p {
    margin-bottom: 20px;
    color: #d1d1d1;
    font-size: 1.1rem;
}

/* Footer */
.harmony-vexqe-9630-footer {
    border-top: 1px solid #3d0042;
    padding: 60px 0 30px;
    text-align: center;
    background: #0a000b;
}

.harmony-vexqe-9630-footer-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #888;
}

/* Responsiveness */
@media (max-width: 992px) {
    .harmony-vexqe-9630-hero-grid {
        flex-direction: column;
        text-align: center;
    }
    .harmony-vexqe-9630-hero-h1 {
        font-size: 2.5rem;
    }
    .harmony-vexqe-9630-benefit-row, .harmony-vexqe-9630-benefit-row.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .harmony-vexqe-9630-burger-label {
        display: flex;
    }
    .harmony-vexqe-9630-menu-list {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #120014;
        flex-direction: column;
        padding: 40px;
        border-bottom: 2px solid #FF4FD8;
    }
    .harmony-vexqe-9630-burger-check:checked ~ .harmony-vexqe-9630-menu-list {
        display: flex;
    }
    .harmony-vexqe-9630-for-grid {
        grid-template-columns: 1fr;
    }
}