:root {
    --heal-bg: #f0f7f4; /* Soft Mint */
    --heal-text: #4a5d4e; /* Deep Forest Green */
    --heal-primary: #88c9a1; /* Healing Green */
    --heal-secondary: #ffffff;
    --heal-accent: #e6b89c; /* Soft Earth */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--heal-bg); color: var(--heal-text);
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7; overflow-x: hidden;
}

/* Natural Background Effect */
.heal-bg-effect {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1;
    background: radial-gradient(circle at top right, rgba(136, 201, 161, 0.2) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(230, 184, 156, 0.2) 0%, transparent 50%);
}

.heal-container { max-width: 1000px; margin: 0 auto; padding: 0 30px;}

/* Header */
.heal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 40px 0; margin-bottom: 50px;
}
.heal-brand {
    font-size: 28px; font-weight: 800; color: var(--heal-text);
    display: flex; align-items: center; gap: 10px;
}
.heal-brand::before {
    content: ''; display: inline-block; width: 24px; height: 24px;
    background: var(--heal-primary); border-radius: 50% 50% 50% 0; transform: rotate(45deg);
}
.heal-nav { display: flex; gap: 30px; background: var(--heal-secondary); padding: 15px 30px; border-radius: 30px; box-shadow: 0 10px 30px rgba(74, 93, 78, 0.05);}
.heal-nav a {
    font-size: 16px; font-weight: 600; color: #88998c; text-decoration: none;
    transition: color 0.3s;
}
.heal-nav a:hover, .heal-nav a.active { color: var(--heal-text); }

/* Hero */
.heal-hero {
    text-align: center; margin-bottom: 100px; position: relative;
}
.heal-hero-visual {
    width: 200px; height: 200px; background: linear-gradient(135deg, var(--heal-primary), var(--heal-accent));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    margin: 0 auto 40px; animation: morph 8s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(136, 201, 161, 0.3);
}
@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

.heal-hero h1 {
    font-size: 48px; font-weight: 800; margin-bottom: 20px; color: var(--heal-text);
}
.heal-hero p { font-size: 20px; color: #6b7d6f; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;}

.btn-heal {
    display: inline-block; padding: 16px 40px; font-size: 18px; font-weight: bold;
    color: var(--heal-secondary); background: var(--heal-primary); border-radius: 30px;
    transition: all 0.3s; margin: 0 10px; box-shadow: 0 10px 20px rgba(136, 201, 161, 0.4);
    text-decoration: none;
}
.btn-heal:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(136, 201, 161, 0.5); }
.btn-heal-alt {
    display: inline-block; padding: 16px 40px; font-size: 18px; font-weight: bold;
    color: var(--heal-text); background: var(--heal-secondary); border-radius: 30px;
    transition: all 0.3s; margin: 0 10px; box-shadow: 0 10px 20px rgba(74, 93, 78, 0.05);
    text-decoration: none;
}
.btn-heal-alt:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(74, 93, 78, 0.1); }

/* Stats */
.heal-stats {
    display: flex; justify-content: center; gap: 40px; margin-bottom: 100px;
}
.hs-item {
    background: var(--heal-secondary); padding: 30px 50px; border-radius: 20px;
    text-align: center; box-shadow: 0 10px 30px rgba(74, 93, 78, 0.05);
}
.hs-val { font-size: 40px; font-weight: 800; color: var(--heal-primary); margin-bottom: 5px;}
.hs-lbl { font-size: 14px; color: #88998c; font-weight: 600;}

/* Features */
.heal-features { margin-bottom: 100px;}
.heal-features h2 { font-size: 32px; text-align: center; margin-bottom: 50px;}
.hf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;}
.hf-card {
    background: var(--heal-secondary); padding: 40px; border-radius: 20px;
    box-shadow: 0 10px 30px rgba(74, 93, 78, 0.05); transition: transform 0.3s;
}
.hf-card:hover { transform: translateY(-5px); }
.hf-icon {
    width: 50px; height: 50px; background: var(--heal-bg); border-radius: 15px;
    margin-bottom: 20px; display: flex; justify-content: center; align-items: center;
    color: var(--heal-primary); font-size: 24px; font-weight: bold;
}
.hf-card h3 { font-size: 22px; margin-bottom: 15px;}
.hf-card p { font-size: 16px; color: #6b7d6f;}

/* Nodes */
.heal-nodes { margin-bottom: 100px; text-align: center;}
.heal-nodes h2 { font-size: 32px; margin-bottom: 50px;}
.hn-tree {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 15px;
}
.hn-leaf {
    padding: 12px 25px; background: var(--heal-secondary); border-radius: 20px;
    color: var(--heal-text); font-weight: 600; box-shadow: 0 5px 15px rgba(74, 93, 78, 0.05);
    transition: all 0.3s; cursor: default;
}
.hn-leaf:hover { background: var(--heal-primary); color: var(--heal-secondary); }

/* FAQ */
.heal-faq { margin-bottom: 120px;}
.heal-faq h2 { font-size: 32px; text-align: center; margin-bottom: 50px;}
.h-faq-item {
    background: var(--heal-secondary); padding: 30px; border-radius: 20px;
    margin-bottom: 20px; box-shadow: 0 10px 30px rgba(74, 93, 78, 0.05);
}
.h-fq { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--heal-text);}
.h-fa { font-size: 16px; color: #6b7d6f;}

footer {
    text-align: center; padding: 40px 0; color: #88998c; font-size: 14px;
}

@media (max-width: 768px) {
    .heal-header { flex-direction: column; gap: 20px; }
    .heal-nav { width: 100%; justify-content: center; flex-wrap: wrap;}
    .heal-hero h1 { font-size: 36px; }
    .heal-stats { flex-direction: column; gap: 20px; }
    .hf-grid { grid-template-columns: 1fr; }
    .btn-heal, .btn-heal-alt { display: block; margin: 10px auto; width: 80%;}
}