@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Playfair+Display:wght@700&display=swap');

:root {
    /* アースカラーの調和（誰もが閲覧しやすいユニバーサル配色） */
    --primary-green: #4A6B53;    /* セージグリーン（健康・心の安定を連想させる優しい緑） */
    --accent-green: #6C8E75;     /* ライトセージグリーン（アクセント用） */
    --light-green: #E8EFEA;      /* バックグラウンドやカードのベース（淡い緑） */
    --text-main: #2C2C2C;        /* ウォームチャコール（優しく目に刺さらない文字色） */
    --text-light: #5C625E;       /* メインテキストに馴染むセージグレー */
    --bg-white: #FFFFFF;
    --bg-soft: #FAF8F5;          /* ウォームアイボリー・オフホワイト（紙のように優しい背景色） */
    --gold-accent: #E07A5F;      /* アプリコットテラコッタ（上品に目立たせるアクセント） */
    
    /* LINE公式専用グリーン（コンバージョン用） */
    --btn-line-color: #06C755; 
    --gradient-line: linear-gradient(135deg, #06C755 0%, #00AE48 100%); 
    
    --shadow-soft: 0 10px 40px -10px rgba(74, 107, 83, 0.08); /* 影にもセージグリーンの余韻を */
    --transition: cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-soft);
    line-height: 1.8;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Background floating shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -3;
    opacity: 0.08;
    pointer-events: none;
    animation: float 20s infinite alternate;
}
.shape-1 {
    width: 600px; height: 600px;
    background: var(--accent-green);
    top: 5%; left: -15%;
}
.shape-2 {
    width: 500px; height: 500px;
    background: var(--gold-accent);
    top: 40%; right: -10%;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 150px) scale(1.1); }
}

header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 5%;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.3s;
}

.logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--primary-green); letter-spacing: 0.5px; }
.logo span { color: var(--gold-accent); font-style: italic; }

/* Header Navigation */
.header-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
.header-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}
.header-nav a:hover {
    color: var(--accent-green);
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s var(--transition);
}
.header-nav a:hover::after {
    width: 100%;
}

.header-btn {
    background: var(--text-main); color: white;
    padding: 10px 28px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem;
    transition: 0.3s;
    border: 1px solid transparent;
}
.header-btn:hover { background: var(--bg-white); color: var(--text-main); border-color: var(--text-main); transform: translateY(-2px); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 0 5%; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 120%; z-index: -2; transition: transform 0.1s linear; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(105deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.8) 45%, rgba(255,255,255,0) 100%); z-index: -1; }

.hero-content { max-width: 650px; padding-top: 80px; }
.badge { display: inline-block; background: var(--bg-white); color: var(--accent-green); padding: 8px 20px; border-radius: 30px; font-weight: 700; font-size: 0.85rem; margin-bottom: 25px; border: 1px solid var(--accent-green); box-shadow: 0 4px 10px rgba(59, 126, 88, 0.1); }
.glow-effect { box-shadow: 0 0 20px rgba(230,240,234,0.8); }

.hero h1 { font-size: 4.2rem; font-weight: 900; line-height: 1.15; margin-bottom: 24px; color: var(--text-main); letter-spacing: -1px; }
.text-gradient { background: linear-gradient(90deg, var(--primary-green), var(--accent-green)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.25rem; color: var(--text-light); margin-bottom: 45px; font-weight: 500; }

.btn-primary {
    background: var(--gradient-line); color: white;
    padding: 18px 45px; border-radius: 50px; text-decoration: none; font-size: 1.2rem; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.35); transition: 0.3s; position: relative; overflow: hidden;
}
.btn-primary::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shine 3s infinite;
}
@keyframes shine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
.btn-primary:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 35px rgba(6, 199, 85, 0.5); }

.pulse-anim { animation: pulse 2.5s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.5); } 70% { box-shadow: 0 0 0 15px rgba(6, 199, 85, 0); } 100% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0); } }

/* Sections */
section { padding: 120px 5%; position: relative; }

/* Benefits */
.benefits { 
    background: url('./images/nature_bg.png') center/cover no-repeat fixed;
    position: relative;
}
.benefits::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}
.benefits > * { position: relative; z-index: 1; }
.bg-glass { background: rgba(255,255,255,0.4); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.9); }

.section-header { text-align: center; margin-bottom: 70px; }
.section-title { font-size: 2.8rem; font-weight: 900; color: var(--primary-green); margin-bottom: 10px; }
.title-underline { width: 60px; height: 4px; background: var(--gold-accent); margin: 0 auto 20px; border-radius: 2px; }
.section-header p { color: var(--text-light); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* Problem Solution */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1050px; margin: 0 auto; perspective: 1000px; }
.comp-card { background: white; padding: 50px 40px; border-radius: 24px; box-shadow: var(--shadow-soft); transition: transform 0.1s; transform-style: preserve-3d; }
.comp-old { border-top: 6px solid #E53E3E; opacity: 0.9; }
.comp-new { 
    border-top: 6px solid var(--accent-green); 
    background: var(--primary-green); 
    color: white; 
    position: relative; 
    box-shadow: 0 15px 50px -10px rgba(20, 63, 41, 0.6);
}
.ribbon { position: absolute; top: -15px; right: -15px; background: var(--gold-accent); color: #fff; padding: 8px 20px; font-weight: bold; border-radius: 20px; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); transform: rotate(5deg); }
.comp-card h3 { font-size: 1.6rem; margin-bottom: 25px; transform: translateZ(30px); }
.comp-old h3 { color: var(--text-main); }
.comp-new h3 { color: var(--bg-white); }

.comp-list { list-style: none; transform: translateZ(20px); }
.comp-list li { margin-bottom: 18px; display: flex; align-items: flex-start; font-size: 1.05rem; }
.comp-old .comp-list li { color: var(--text-main); }
.comp-new .comp-list li { color: rgba(255,255,255,0.9); }

.comp-list li::before { content: "✕"; color: #E53E3E; margin-right: 12px; font-weight: bold; font-size: 1.2rem; }
.comp-new .comp-list li::before { content: "✓"; color: var(--gold-accent); }

/* Benefits */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; max-width: 1200px; margin: 0 auto; perspective: 1000px; }
.feature-card { background: white; padding: 50px 40px; border-radius: 24px; text-align: center; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; transform-style: preserve-3d; border: 1px solid rgba(237, 244, 240, 1); }
.feature-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, var(--light-green) 0%, transparent 100%); opacity: 0; transition: 0.4s; z-index: 0;}
.feature-card:hover::after { opacity: 0.4; }
.feature-icon { width: 90px; height: 90px; background: var(--light-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 2.5rem; position: relative; z-index: 1; transform: translateZ(40px); }
.icon-glow { box-shadow: 0 0 30px rgba(59, 126, 88, 0.15); }
.feature-card h3 { color: var(--primary-green); margin-bottom: 15px; font-size: 1.4rem; position: relative; z-index: 1; transform: translateZ(30px); }
.feature-card p { position: relative; z-index: 1; color: var(--text-light); transform: translateZ(20px); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto; }
.review-card { background: white; padding: 40px; border-radius: 24px; box-shadow: var(--shadow-soft); border: 1px solid rgba(237, 244, 240, 1); }
.stars { color: var(--gold-accent); font-size: 1.4rem; margin-bottom: 15px; letter-spacing: 2px;}
.review-text { font-size: 1.1rem; font-style: italic; margin-bottom: 25px; color: var(--text-main); }
.reviewer { display: flex; align-items: center; border-top: 1px solid var(--light-green); padding-top: 20px; }
.avatar { width: 50px; height: 50px; background: var(--accent-green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; margin-right: 15px; }
.reviewer h4 { font-size: 1.1rem; margin: 0; color: var(--primary-green); }
.reviewer p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border-radius: 12px; background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.02); overflow: hidden; border: 1px solid var(--light-green); }
.faq-question { width: 100%; text-align: left; padding: 25px 30px; background: transparent; border: none; font-size: 1.1rem; font-weight: 700; color: var(--primary-green); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question .icon { font-size: 1.5rem; transition: transform 0.3s; color: var(--accent-green); }
.faq-question.active .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; background: var(--bg-soft); }
.faq-answer p { padding: 0 30px 25px; color: var(--text-light); border-top: 1px solid var(--light-green); margin-top: 15px; padding-top: 15px; }

/* Price Comparison Table */
.pricing-compare { 
    background: url('./images/supplements.png') center/cover no-repeat;
    position: relative;
    padding: 140px 5%;
}
.pricing-compare::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,1) 100%);
    z-index: 0;
}
.pricing-compare > * { position: relative; z-index: 1; }

.price-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--light-green);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.05rem;
}

.price-table thead {
    background: var(--primary-green);
    color: white;
}

.price-table th {
    padding: 20px 18px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.price-table th.highlight-col {
    background: var(--accent-green);
    position: relative;
}

.member-badge {
    display: inline-block;
    background: var(--gold-accent);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 10px;
    margin-top: 4px;
}

.price-table td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid var(--light-green);
    transition: background 0.3s;
}

.price-table tbody tr:hover {
    background: rgba(59, 126, 88, 0.04);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.product-name {
    text-align: left !important;
    font-weight: 600;
    color: var(--text-main);
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1rem;
}

.new-price {
    color: var(--accent-green);
    font-weight: 900;
    font-size: 1.25rem;
    background: rgba(59, 126, 88, 0.06);
}

.save-price {
    color: #E53E3E;
    font-weight: 800;
    font-size: 1.1rem;
}

.table-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 16px;
    padding: 0 20px;
}

/* Story Section */
.story-section { padding: 120px 5%; background: var(--bg-soft); }
.story-container { display: flex; align-items: center; gap: 60px; max-width: 1100px; margin: 0 auto; }
.story-content { flex: 1; }
.story-content .lead-text { font-size: 1.3rem; font-weight: 700; color: var(--primary-green); margin-bottom: 25px; line-height: 1.7; }
.story-content p { margin-bottom: 20px; color: var(--text-light); }
.story-author { display: flex; align-items: center; margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--light-green); }
.author-avatar { width: 60px; height: 60px; background: var(--gold-accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: bold; margin-right: 20px; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }
.author-info h4 { font-size: 1.2rem; color: var(--primary-green); margin: 0; }
.author-info p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.story-image { flex: 1; }
.story-image .image-wrapper { border-radius: 30px; overflow: hidden; box-shadow: 0 20px 50px rgba(20, 63, 41, 0.15); }
.story-image img { width: 100%; height: auto; display: block; }

@media (max-width: 900px) {
    .story-container { flex-direction: column; }
}

/* Support System */
.support-system { background: var(--bg-soft); }
.support-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.support-image { flex: 1; position: relative; }
.support-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(20, 63, 41, 0.15);
}
.support-info { flex: 1; }
.support-features {
    list-style: none;
    margin: 30px 0;
}
.support-features li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.support-features li span {
    font-size: 1.4rem;
    margin-right: 15px;
    background: var(--light-green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.support-note {
    font-weight: 700;
    color: var(--accent-green);
    border-left: 4px solid var(--accent-green);
    padding-left: 15px;
}
@media (max-width: 900px) {
    .support-container { flex-direction: column; text-align: center; gap: 40px; }
    .support-info .section-title { text-align: center !important; }
}

/* Blog Section */
.blog-section { background: var(--bg-soft); }

/* Magazine Tabs */
.magazine-tabs { display: flex; justify-content: center; gap: 15px; margin: 40px 0 50px; flex-wrap: wrap; }
.tab-btn { background: white; color: var(--text-light); border: 2px solid var(--light-green); padding: 12px 30px; border-radius: 50px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s var(--transition); box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.tab-btn:hover { border-color: var(--accent-green); color: var(--accent-green); }
.tab-btn.active { background: var(--primary-green); color: white; border-color: var(--primary-green); box-shadow: 0 8px 25px rgba(20, 63, 41, 0.25); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--light-green);
    transition: transform 0.3s var(--transition), box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(20, 63, 41, 0.12);
}

.blog-card-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--light-green);
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 1rem;
}

.blog-more {
    text-align: center;
    margin-top: 40px;
}

.blog-more-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
    border: 2px solid var(--primary-green);
}

.blog-more-btn:hover {
    background: transparent;
    color: var(--primary-green);
}

/* Placeholder cards when API is unavailable */
.blog-card-placeholder {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--light-green);
    display: flex;
    flex-direction: column;
}

.blog-card-placeholder .placeholder-thumb {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--light-green) 0%, #dce8e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

/* Final CTA */
.final-cta { 
    background: url('./images/lifestyle.png') center/cover no-repeat; 
    color: white; text-align: center; padding: 160px 5%; position: relative; overflow: hidden; 
}
.final-cta::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 17, 14, 0.7); z-index: 1; }
.cta-content { position: relative; z-index: 2; max-width: 850px; margin: 0 auto; }
.final-cta h2 { font-size: 3.5rem; margin-bottom: 25px; line-height: 1.2; font-weight: 900; color: var(--bg-white); text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.final-cta p { font-size: 1.3rem; margin-bottom: 50px; opacity: 0.9; color: rgba(255,255,255,0.8); }

.final-cta .btn-primary {
    border: 3px solid rgba(255,255,255,0.9);
    box-shadow: 0 10px 40px rgba(6, 199, 85, 0.5);
}

.disclaimer { margin-top: 30px; font-size: 0.95rem; opacity: 0.6; }

footer { background: #0A110E; color: rgba(255,255,255,0.5); text-align: center; padding: 40px 20px; font-size: 0.9rem; }

/* Mobile Sticky CTA */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 15px; border-top: 1px solid var(--light-green); z-index: 999; text-align: center; box-shadow: 0 -5px 20px rgba(0,0,0,0.05); }
.mobile-sticky-cta .btn-primary { width: 100%; padding: 15px; font-size: 1.1rem; }

/* Utils */
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.animate-on-scroll.scrolled { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .header-nav { display: none; } /* モバイル時はナビゲーション非表示ですっきり */
    .comparison-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .hero-bg { height: 100%; }
    .hero { align-items: flex-start; padding-top: 120px; text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero-overlay { background: rgba(255,255,255,0.88); }
    .reviews-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2.2rem; }
    .price-table th, .price-table td { padding: 12px 10px; font-size: 0.9rem; }
    .new-price { font-size: 1.1rem; }
}
@media (max-width: 768px) {
    .mobile-sticky-cta { display: block; }
    footer { padding-bottom: 90px; }
    .blog-grid { grid-template-columns: 1fr; }
}

/* --- セルフケア診断 (プチ診断ツール) スタイリング --- */
.diagnosis-section {
    background: var(--bg-soft);
    padding: 100px 5%;
}

.diagnosis-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--light-green);
    text-align: center;
}

.diagnosis-progress {
    height: 6px;
    background: var(--light-green);
    border-radius: 3px;
    margin-bottom: 30px;
    overflow: hidden;
}

.diagnosis-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-green);
    transition: width 0.4s var(--transition);
}

.diagnosis-step-title {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diagnosis-question-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 35px;
    line-height: 1.5;
}

.diagnosis-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.diagnosis-option-btn {
    background: var(--bg-soft);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    transition: all 0.25s var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.diagnosis-option-btn:hover {
    background: var(--bg-white);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 107, 83, 0.08);
}

.diagnosis-option-btn span.icon {
    font-size: 1.3rem;
}

.diagnosis-result {
    display: none;
    text-align: center;
    animation: fadeIn 0.6s var(--transition) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-badge {
    display: inline-block;
    background: var(--light-green);
    color: var(--primary-green);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.result-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 20px;
}

.result-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
    text-align: left;
    background: var(--bg-soft);
    padding: 25px;
    border-radius: 16px;
}

.result-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}


