/* Misty Forest Healing Style - Framed Organic Layout */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Noto+Serif+SC:wght@300;400;600;900&family=Nunito:wght@300;400;600&display=swap');

:root {
    --mist-white: #f4f7f6;
    --mist-green: #e3ece8;
    --forest-light: #c2d5cd;
    --forest-mid: #89a89c;
    --forest-dark: #2c4c3b;
    --leaf-green: #5c8d73;
    --text-main: #334e40;
    --text-muted: #6b8276;
    --font-serif: 'Noto Serif SC', 'Lora', serif;
    --font-sans: 'Nunito', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--mist-white);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow: hidden; /* Prevent body scroll, scroll inside frame */
}

h1, h2, h3, h4, .font-serif { font-family: var(--font-serif); }
a { text-decoration: none; color: inherit; transition: 0.4s ease; }
img { max-width: 100%; height: auto; display: block; border-radius: 30px; }

/* 1. Passepartout (Picture Frame) Layout */
.forest-frame {
    position: fixed;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    background: var(--mist-white);
    border-radius: 40px;
    box-shadow: 0 0 0 20px var(--forest-light), 0 20px 50px rgba(44, 76, 59, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}
.forest-frame::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(227, 236, 232, 0.8) 0%, rgba(244, 247, 246, 0.2) 100%);
    pointer-events: none; z-index: -1;
}

/* 2. Soft Top Navigation */
.frame-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    background: rgba(244, 247, 246, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(194, 213, 205, 0.3);
    z-index: 100;
}

.nav-brand {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--forest-dark);
    letter-spacing: 2px;
}

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
    font-size: 1.05rem;
    color: var(--text-muted);
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: var(--leaf-green);
    opacity: 0; transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest-dark); }
.nav-links a:hover::after, .nav-links a.active::after { opacity: 1; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-lang { color: var(--text-muted); font-size: 0.9rem; }
.btn-leaf {
    background: var(--leaf-green);
    color: #fff;
    padding: 12px 30px;
    /* Organic leaf shape */
    border-radius: 30px 10px 30px 10px;
    font-weight: 600;
    transition: 0.4s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(92, 141, 115, 0.2);
}
.btn-leaf:hover {
    border-radius: 10px 30px 10px 30px;
    background: var(--forest-dark);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--forest-dark);
    border: 1px solid var(--forest-mid);
    padding: 12px 30px;
    border-radius: 30px 10px 30px 10px;
    font-weight: 600;
    transition: 0.4s;
}
.btn-ghost:hover { border-radius: 10px 30px 10px 30px; background: var(--mist-green); }

/* 3. Scrollable Content Area */
.frame-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 50px;
    scroll-behavior: smooth;
    /* Custom Scrollbar */
}
.frame-content::-webkit-scrollbar { width: 8px; }
.frame-content::-webkit-scrollbar-track { background: transparent; }
.frame-content::-webkit-scrollbar-thumb { background: var(--forest-light); border-radius: 10px; }
.frame-content::-webkit-scrollbar-thumb:hover { background: var(--forest-mid); }

.container { max-width: 1100px; margin: 0 auto; }
.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--forest-dark);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.section-title::after {
    content: '〰'; display: block; color: var(--forest-light); font-size: 2rem; margin-top: -10px;
}

/* 4. Organic Hero Pebble */
.hero-pebble {
    padding: 100px 0;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}
.hero-pebble::before {
    content: ''; position: absolute; top: 50%; right: -10%; transform: translateY(-50%);
    width: 600px; height: 600px; background: var(--mist-green);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1; filter: blur(30px);
}

.hero-text { flex: 1; }
.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    color: var(--forest-dark);
    margin-bottom: 20px;
}
.hero-text h1 span { font-style: italic; color: var(--leaf-green); font-weight: 400; }
.hero-text p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 450px; }
.hero-actions { display: flex; gap: 20px; margin-bottom: 40px; }

.trust-marks { display: flex; gap: 20px; font-size: 0.9rem; color: var(--forest-mid); }
.trust-marks span { display: flex; align-items: center; gap: 5px; }
.trust-marks span::before { content: '✿'; color: var(--leaf-green); }

.hero-visual { flex: 1; }
.hero-visual img {
    border-radius: 50% 50% 50% 10px / 50% 50% 50% 10px;
    box-shadow: 20px 20px 50px rgba(44, 76, 59, 0.1);
}

/* 5. Mossy Stats */
.stats-moss {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 0 100px;
}
.moss-stone {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 50% 50% 20px 20px / 50% 50% 20px 20px;
    box-shadow: 0 15px 35px rgba(194, 213, 205, 0.4);
    transition: 0.4s;
}
.moss-stone:hover { transform: translateY(-10px); background: var(--mist-green); }
.moss-stone h3 { font-family: var(--font-serif); font-size: 3rem; color: var(--forest-dark); margin-bottom: 10px; }
.moss-stone p { color: var(--text-muted); font-size: 0.95rem; }

/* 6. Winding Trail Features */
.features-trail { padding: 80px 0; position: relative; }
.features-trail::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 2px; background: dashed 2px var(--forest-light); z-index: -1;
}
.trail-stop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
}
.trail-stop:nth-child(even) { flex-direction: row-reverse; }
.trail-content { width: 45%; background: #fff; padding: 40px; border-radius: 30px; box-shadow: 0 20px 40px rgba(194, 213, 205, 0.3); position: relative; }
.trail-content::after {
    content: ''; position: absolute; top: 50%; transform: translateY(-50%);
    width: 20px; height: 20px; background: var(--leaf-green); border-radius: 50%;
    box-shadow: 0 0 0 10px var(--mist-white);
}
.trail-stop:nth-child(odd) .trail-content::after { right: -60px; }
.trail-stop:nth-child(even) .trail-content::after { left: -60px; }

.trail-img { width: 45%; }
.trail-img img { border-radius: 40px 10px 40px 10px; }
.trail-content h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--forest-dark); margin-bottom: 15px; }
.trail-content p { color: var(--text-muted); }

/* 7. Grove Nodes */
.nodes-grove { padding: 80px 0; text-align: center; }
.grove-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.grove-leaf {
    background: var(--mist-green);
    color: var(--forest-dark);
    padding: 15px 35px;
    border-radius: 30px 0 30px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}
.grove-leaf:hover { background: var(--leaf-green); color: #fff; border-radius: 0 30px 0 30px; }
.gl-ping { font-size: 0.85rem; opacity: 0.8; }

/* 8. Mist Reviews */
.reviews-mist { padding: 100px 0; }
.mist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.mist-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 40px;
    border: 1px solid #fff;
    box-shadow: 0 15px 30px rgba(194, 213, 205, 0.2);
}
.mist-stars { color: var(--leaf-green); margin-bottom: 20px; font-size: 1.2rem; }
.mist-text { font-family: var(--font-serif); font-size: 1.1rem; color: var(--text-main); margin-bottom: 20px; font-style: italic; }
.mist-author { font-weight: 700; color: var(--forest-dark); }
.mist-author span { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.9rem; }

/* 9. Stone Pricing */
.pricing-stones { padding: 100px 0; }
.stones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}
.stone-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(194, 213, 205, 0.3);
    transition: 0.4s;
}
.stone-card.pro {
    background: var(--forest-dark);
    color: #fff;
    transform: scale(1.05);
    border-radius: 40px 10px 40px 10px;
}
.stone-card.pro .text-muted { color: var(--forest-light); }
.stone-card.pro .btn-leaf { background: #fff; color: var(--forest-dark); }

.sc-name { font-size: 1.2rem; margin-bottom: 20px; font-weight: 600; }
.sc-price { font-family: var(--font-serif); font-size: 4rem; margin-bottom: 30px; line-height: 1; }
.sc-price span { font-size: 1.2rem; font-family: var(--font-sans); }
.sc-features { list-style: none; text-align: left; margin-bottom: 40px; }
.sc-features li { padding: 12px 0; border-bottom: 1px dashed var(--forest-light); }
.stone-card.pro .sc-features li { border-bottom-color: rgba(255,255,255,0.1); }
.sc-features li::before { content: '✿'; color: var(--leaf-green); margin-right: 10px; }

/* 10. Leaf FAQ */
.faq-leaves { padding: 80px 0 120px; max-width: 800px; margin: 0 auto; }
.leaf-item {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(194, 213, 205, 0.2);
    border-left: 4px solid var(--leaf-green);
}
.leaf-q { font-family: var(--font-serif); font-size: 1.2rem; color: var(--forest-dark); margin-bottom: 10px; font-weight: 600; }
.leaf-a { color: var(--text-muted); }

/* Footer */
.forest-footer {
    background: var(--forest-dark);
    color: var(--forest-light);
    padding: 80px 50px 40px;
    border-radius: 40px 40px 0 0;
    margin: 0 -50px; /* Stretch to frame edges */
}
.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 60px;
}
.foot-brand { font-family: var(--font-serif); font-size: 2rem; color: #fff; margin-bottom: 20px; }
.foot-desc { line-height: 1.8; }
.foot-col h4 { color: #fff; margin-bottom: 20px; font-family: var(--font-serif); }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a { color: var(--forest-light); }
.foot-col a:hover { color: #fff; }
.foot-copy { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* Subpages */
.sub-hero { padding: 120px 0 80px; text-align: center; }
.sub-hero h1 { font-size: 3.5rem; color: var(--forest-dark); margin-bottom: 20px; }
.sub-hero p { font-size: 1.2rem; color: var(--text-muted); }

.dl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; padding-bottom: 120px; }
.dl-card { background: #fff; padding: 50px; border-radius: 40px 10px 40px 10px; text-align: center; box-shadow: 0 20px 40px rgba(194, 213, 205, 0.3); transition: 0.4s; }
.dl-card:hover { border-radius: 10px 40px 10px 40px; transform: translateY(-5px); }
.dl-icon { font-size: 4rem; margin-bottom: 20px; }
.dl-card h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--forest-dark); margin-bottom: 15px; }
.dl-card p { color: var(--text-muted); margin-bottom: 30px; }

.help-layout { display: grid; grid-template-columns: 250px 1fr; gap: 60px; padding-bottom: 120px; }
.help-nav { position: sticky; top: 40px; display: flex; flex-direction: column; gap: 15px; }
.help-nav a { padding: 15px 25px; background: #fff; border-radius: 20px; color: var(--text-muted); font-weight: 600; box-shadow: 0 5px 15px rgba(194, 213, 205, 0.2); }
.help-nav a.active, .help-nav a:hover { background: var(--leaf-green); color: #fff; }
.help-doc { background: #fff; padding: 50px; border-radius: 30px; margin-bottom: 40px; box-shadow: 0 20px 40px rgba(194, 213, 205, 0.2); }
.help-doc h3 { font-family: var(--font-serif); font-size: 2rem; color: var(--forest-dark); margin-bottom: 20px; }
.help-doc p, .help-doc li { color: var(--text-muted); margin-bottom: 15px; font-size: 1.05rem; }
.help-doc ul { padding-left: 20px; }

/* Responsive */
@media (max-width: 1200px) {
    .forest-frame { top: 10px; left: 10px; right: 10px; bottom: 10px; border-radius: 30px; box-shadow: 0 0 0 10px var(--forest-light); }
    .frame-nav { padding: 20px 30px; }
    .frame-content { padding: 0 30px; }
}
@media (max-width: 992px) {
    .hero-pebble { flex-direction: column; text-align: center; padding: 60px 0; }
    .hero-actions, .trust-marks { justify-content: center; }
    .hero-pebble::before { right: 50%; transform: translate(50%, -50%); }
    .stats-moss, .mist-grid, .stones-grid { grid-template-columns: repeat(2, 1fr); }
    .features-trail::before { left: 30px; }
    .trail-stop, .trail-stop:nth-child(even) { flex-direction: column; align-items: flex-start; padding-left: 60px; margin-bottom: 60px; }
    .trail-content, .trail-img { width: 100%; }
    .trail-stop:nth-child(odd) .trail-content::after, .trail-stop:nth-child(even) .trail-content::after { left: -40px; right: auto; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .help-layout { grid-template-columns: 1fr; }
    .help-nav { position: static; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .forest-frame { top: 0; left: 0; right: 0; bottom: 0; border-radius: 0; box-shadow: none; }
    .nav-links { display: none; }
    .stats-moss, .mist-grid, .stones-grid, .dl-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 3rem; }
}
