:root {
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    
    --primary: #10b981; 
    --primary-light: #34d399;
    --secondary: #3b82f6; 
    --accent: #f59e0b; 
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    
    --nav-bg: #ffffff;
    --nav-border: #e2e8f0;
    
    --font-sans: 'Inter', 'Noto Sans JP', sans-serif;
}

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

body {
    font-family: var(--font-sans); background-color: var(--bg-main);
    color: var(--text-main); line-height: 1.6; overflow-x: hidden; position: relative;
}

.blob { position: absolute; filter: blur(80px); z-index: -1; opacity: 0.6; animation: float 20s ease-in-out infinite; }
.blob-1 { top: -5%; left: -5%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(248, 250, 252, 0) 70%); }
.blob-2 { top: 30%; right: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(248, 250, 252, 0) 70%); animation-delay: -5s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { line-height: 1.3; color: #0f172a; }
h2 { margin-bottom: 1.5rem; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: 8px; font-weight: 600;
    text-decoration: none; transition: all 0.2s ease; cursor: pointer; font-size: 15px; text-align: center;
}
.btn-lg { padding: 16px 40px; font-size: 16px; }

.btn-primary { background: var(--primary); color: white; border: none; box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2); }
.btn-primary:hover { transform: translateY(-1px); background: #059669; box-shadow: 0 6px 8px -1px rgba(16, 185, 129, 0.3); }
.btn-outline { background: white; color: var(--text-main); border: 1px solid var(--border-color); }
.btn-outline:hover { background: #f1f5f9; border-color: #cbd5e1; }

.navbar {
    padding: 16px 0; position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--nav-border);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 22px; font-weight: 800; color: #0f172a; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a:not(.btn) { color: var(--text-main); text-decoration: none; font-weight: 500; font-size: 14px; transition: color 0.2s; }
.nav-links a:not(.btn):hover { color: var(--primary); }

/* Hero */
.hero { padding: 140px 0 80px; display: flex; align-items: center; }
.hero-container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.badge { display: inline-block; padding: 6px 16px; border-radius: 100px; background: #ecfdf5; border: 1px solid #d1fae5; color: #059669; font-size: 14px; font-weight: 600; margin-bottom: 24px; }
.hero-title { font-size: 3.5rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-main); margin-bottom: 20px; max-width: 90%; font-weight: 500; }

.hero-checks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.hero-checks span { display: inline-flex; align-items: center; font-weight: 600; color: var(--primary); font-size: 0.95rem; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.tag { background: white; border: 1px solid var(--border-color); color: var(--text-muted); padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 500; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }

.hero-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cta-buttons { display: flex; gap: 16px; width: 100%; flex-wrap: wrap; }
.hero-cta .btn { min-width: 240px; }
.hero-cta .sub-text, .cta-panel .sub-text, .solution-banner .sub-text { margin-top: 8px; font-size: 13px; color: var(--text-muted); font-weight: 500; }

.browser-mockup {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1); overflow: hidden;
    transform: rotateY(-2deg) rotateX(2deg); transition: transform 0.5s ease; position: relative;
}
.browser-mockup::before { content: ''; display: block; height: 30px; background: #f1f5f9; border-bottom: 1px solid var(--border-color); width: 100%; }
.browser-mockup::after { content: ''; position: absolute; top: 10px; left: 12px; width: 10px; height: 10px; border-radius: 50%; background: #ef4444; box-shadow: 18px 0 0 #f59e0b, 36px 0 0 #10b981; }
.hero-image-wrapper { perspective: 1000px; }
.hero-image-wrapper:hover .browser-mockup, .feature-image-wrapper:hover .browser-mockup { transform: rotateY(0) rotateX(0); }
.hero-image, .feature-image { width: 100%; height: auto; display: block; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header h2 { font-size: 2.2rem; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); margin-top: 16px; }

/* Numbers Section */
.numbers-section { padding: 40px 0 80px; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.number-card { background: white; padding: 32px 24px; border-radius: 16px; text-align: center; border: 1px solid var(--border-color); box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.number-card h3 { font-size: 3rem; color: var(--primary); margin-bottom: 8px; font-weight: 800; }
.number-card h3 span { font-size: 2rem; }
.number-card h3.text { font-size: 2rem; margin-top: 12px; }
.number-card p { font-weight: 600; color: var(--text-muted); }

/* Problems Section */
.problems-section { padding: 100px 0; background: white; border-top: 1px solid #f1f5f9; }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.problem-card { background: var(--bg-main); padding: 32px 24px; border-radius: 16px; text-align: center; border: 1px solid var(--border-color); }
.problem-icon { font-size: 40px; margin-bottom: 16px; }
.problem-card p { font-weight: 600; color: var(--text-main); }
.solution-banner { background: linear-gradient(135deg, #f8fafc, #ecfdf5); padding: 40px; border-radius: 16px; text-align: center; border: 1px solid #d1fae5; }
.solution-banner h3 { font-size: 1.8rem; }
.solution-banner .cta-buttons { display: flex; gap: 16px; justify-content: center; }

/* Features Grid */
.feature-grid-section { padding: 100px 0; background: var(--bg-main); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-box { background: white; padding: 24px; border-radius: 12px; border: 1px solid var(--border-color); transition: box-shadow 0.2s, transform 0.2s; }
.feature-box:hover { transform: translateY(-3px); box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05); }
.feature-box h4 { font-size: 1.05rem; margin-bottom: 12px; color: var(--primary); display: flex; align-items: center; }
.feature-box h4::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; margin-right: 8px; }
.feature-box p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* Detail Features */
.detail-features { padding: 60px 0; background: white; }
.feature-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; padding: 60px 0; border-bottom: 1px solid #f1f5f9; }
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-label { font-size: 14px; font-weight: 700; color: var(--secondary); display: block; margin-bottom: 12px; letter-spacing: 1px; }
.feature-text h3 { font-size: 2rem; margin-bottom: 20px; }
.feature-text p { color: var(--text-muted); font-size: 1.1rem; }
.feature-image-wrapper { perspective: 1000px; }

/* Track Record */
.track-record-section { padding: 100px 0; background: var(--bg-main); text-align: center; }
.beta-badge { display: inline-block; padding: 6px 16px; border-radius: 100px; background: #fffbeb; border: 1px solid #fcd34d; color: #d97706; font-size: 14px; font-weight: 600; margin-top: 16px; }

.record-stats { display: flex; justify-content: center; gap: 24px; margin-bottom: 40px; margin-top: 40px; flex-wrap: wrap;}
.stat-card { background: white; border: 1px solid var(--border-color); border-radius: 16px; padding: 24px 32px; min-width: 220px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.stat-card h4 { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; font-weight: 600;}
.stat-card p { font-size: 1.5rem; color: var(--primary); font-weight: 700; }
.stat-card p span { font-size: 2.5rem; font-weight: 900; }

.industry-tags { display: flex; justify-content: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.cap-card { background: white; padding: 24px; border-radius: 12px; border: 1px solid var(--border-color); font-weight: 600; font-size: 1.1rem; color: var(--primary); box-shadow: 0 4px 6px rgba(0,0,0,0.02); }

/* Comparison Table */
.comparison-section { padding: 100px 0; background: white; }
.table-wrapper { max-width: 900px; margin: 0 auto; overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); }
.comparison-table th, .comparison-table td { padding: 16px 24px; text-align: center; border-bottom: 1px solid var(--border-color); }
.comparison-table th { background: #f8fafc; font-weight: 700; font-size: 1.05rem; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; font-weight: 600; border-right: 1px solid var(--border-color); background: #f8fafc;}
.comparison-table tr:last-child td { border-bottom: none; }
.highlight-col { background: #ecfdf5 !important; color: var(--primary); font-weight: 800; font-size: 1.2rem; }
.comparison-table td.highlight-col { font-size: 1.5rem; }
.comparison-note { text-align: center; max-width: 700px; margin: 40px auto 0; font-size: 1.1rem; font-weight: 600; color: #0f172a; line-height: 1.8; }

/* Trust Section */
.trust-section { padding: 40px 0 100px; background: white; }
.trust-card { max-width: 800px; margin: 0 auto; background: linear-gradient(135deg, #0f172a, #1e293b); color: white; padding: 60px; border-radius: 24px; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2); }
.trust-card h2 { color: white; font-size: 2rem; margin-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
.trust-body p { font-size: 1.1rem; margin-bottom: 16px; color: #cbd5e1; }
.trust-list { display: flex; flex-wrap: wrap; gap: 16px; list-style: none; margin: 24px 0; }
.trust-list li { background: rgba(255,255,255,0.1); padding: 8px 20px; border-radius: 100px; font-weight: 600; color: white; border: 1px solid rgba(255,255,255,0.2); }

/* Message */
.message-section { padding: 100px 0; background: var(--bg-main); }
.message-card { max-width: 800px; margin: 0 auto; background: white; padding: 48px; border-radius: 24px; border: 1px solid var(--border-color); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);}
.message-header { margin-bottom: 32px; border-bottom: 1px solid #e2e8f0; padding-bottom: 32px; }
.message-header h2 { font-size: 1.8rem; margin-bottom: 24px; text-align: center; }
.profile-info { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.profile-image { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 4px solid var(--bg-main); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.profile-text { flex: 1; min-width: 280px; }
.profile-info strong { font-size: 1.3rem; display: block; margin-bottom: 4px; }
.profile-info span { color: var(--text-muted); font-size: 0.95rem; }
.message-body p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 24px; color: #334155; }
.message-body p:last-child { margin-bottom: 0; }
.message-body strong { color: var(--primary); }

/* Merits */
.merits-section { padding: 100px 0; background: #0f172a; color: white; }
.merits-section .section-header h2 { color: white; }
.merits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.merit-box { background: rgba(255,255,255,0.05); padding: 40px 24px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.merit-number { position: absolute; top: -10px; right: 10px; font-size: 80px; font-weight: 900; color: rgba(255,255,255,0.05); }
.merit-box h3 { color: white; font-size: 1.2rem; margin-bottom: 16px; }
.merit-box h3 span { color: var(--primary-light); font-size: 1.6rem; }
.merit-box p { color: #cbd5e1; font-size: 0.95rem; }

/* Flow */
.flow-section { padding: 100px 0; background: white; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; max-width: 1000px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; top: 24px; left: 10%; width: 80%; height: 2px; background: var(--border-color); z-index: 0; }
.timeline-item { position: relative; z-index: 1; text-align: center; }
.timeline-step { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: var(--primary); color: white; border-radius: 50%; font-size: 20px; font-weight: 700; margin: 0 auto 20px; border: 4px solid white; box-shadow: 0 0 0 1px var(--border-color); }
.timeline-content h3 { font-size: 1.1rem; }

/* Pricing */
.pricing-section { padding: 100px 0; background: var(--bg-main); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1000px; margin: 0 auto; }
.pricing-card-wrapper { position: relative; display: flex; flex-direction: column; }
.pricing-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: #ef4444; color: white; padding: 6px 24px; border-radius: 100px; font-weight: 700; font-size: 14px; z-index: 10; box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3); }
.pricing-card { background: white; border: 2px solid var(--primary); border-radius: 24px; padding: 40px 32px; box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.15); text-align: center; display: flex; flex-direction: column; flex: 1; }
.pricing-header { border-bottom: 1px solid var(--border-color); padding-bottom: 24px; margin-bottom: 24px; }
.pricing-header h3 { font-size: 1.5rem; margin-bottom: 16px; }
.price-strike { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 8px; }
.price-active { font-size: 1.2rem; color: var(--text-main); font-weight: 700; }
.price-active span { font-size: 3.5rem; color: var(--primary); }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; flex: 1; }
.pricing-features li { padding: 12px 0; border-bottom: 1px solid #f1f5f9; display: flex; align-items: center; font-weight: 500; font-size: 0.95rem; }
.pricing-features li::before { content: '✓'; color: var(--primary); font-weight: bold; margin-right: 12px; font-size: 18px; }
.pricing-cta .cta-buttons { flex-direction: column; gap: 12px; }
.option-card .pricing-features li::before { color: var(--secondary); }
.pricing-cta .btn { width: 100%; }

/* FAQ */
.faq-section { padding: 100px 0; background: white; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg-main); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; }
.faq-item summary { padding: 24px; font-weight: 600; font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 24px; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--border-color); margin-top: 16px; padding-top: 16px; }

/* Final CTA */
.final-cta { padding: 120px 0; background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%); }
.cta-panel { text-align: center; padding: 60px 40px; background: white; border-radius: 24px; box-shadow: 0 20px 40px -10px rgba(16,185,129,0.1); border: 1px solid #d1fae5; }
.cta-panel h2 { font-size: 2.8rem; margin-bottom: 40px; line-height: 1.2; }
.cta-panel .cta-buttons { display: flex; gap: 20px; justify-content: center; }

/* Footer */
footer { background: white; border-top: 1px solid var(--border-color); padding: 80px 0 40px; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand p { color: var(--text-muted); margin-top: 16px; max-width: 250px; font-size: 14px; }
.footer-links h4 { margin-bottom: 20px; font-size: 1.05rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 32px; text-align: center; color: var(--text-muted); font-size: 13px; }

/* Responsive */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .problems-grid { grid-template-columns: repeat(2, 1fr); }
    .merits-grid { grid-template-columns: repeat(2, 1fr); }
    .capability-grid { grid-template-columns: repeat(2, 1fr); }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .comparison-table th, .comparison-table td { padding: 12px; font-size: 0.9rem; }
}
@media (max-width: 768px) {
    .hero-container, .feature-row { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-title { font-size: 2.5rem; }
    .hero-tags { justify-content: center; }
    .hero-cta { align-items: center; }
    .hero-checks { align-items: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .problems-grid { grid-template-columns: 1fr; }
    .merits-grid { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: 1fr; gap: 40px; }
    .timeline::before { display: none; }
    .nav-links { display: none; }
    .cta-buttons { flex-direction: column; }
    .solution-banner .cta-buttons { flex-direction: column; }
    .cta-panel .cta-buttons { flex-direction: column; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .trust-card { padding: 40px 24px; }
    .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: 1fr; }
    .capability-grid { grid-template-columns: 1fr; }
}

/* Diagnosis Section */
.diagnosis-section { padding: 100px 0; background: linear-gradient(180deg, white 0%, #f8fafc 100%); }
.diagnosis-header { text-align: center; margin-bottom: 60px; }
.diagnosis-header h2 { font-size: 2.4rem; margin-bottom: 16px; }
.diagnosis-header p { font-size: 1.1rem; color: var(--text-muted); font-weight: 500; }

.diagnosis-problems { max-width: 700px; margin: 0 auto 60px; background: white; border: 1px solid var(--border-color); border-radius: 16px; padding: 40px; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05); text-align: center;}
.diagnosis-problems h3 { color: #ef4444; margin-bottom: 24px; font-size: 1.4rem; }
.diagnosis-problem-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.diagnosis-problem-list li { font-weight: 600; font-size: 1.1rem; }
.diagnosis-problem-list li::before { content: '・'; color: #ef4444; font-weight: bold; }

.diagnosis-intro { text-align: center; margin-bottom: 60px; }
.diagnosis-intro p { font-size: 1.1rem; font-weight: 600; color: var(--text-main); margin-bottom: 8px; }
.diagnosis-intro h3 { font-size: 2rem; color: var(--primary); margin: 16px 0; display: inline-block; padding: 8px 32px; border-bottom: 3px solid var(--primary); }

.diagnosis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto 80px; }
.diagnosis-card { background: white; padding: 40px; border-radius: 16px; border: 1px solid var(--border-color); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.diagnosis-card h4 { font-size: 1.3rem; margin-bottom: 24px; text-align: center; color: #0f172a; padding-bottom: 16px; border-bottom: 1px solid #f1f5f9; }
.check-list, .dot-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; align-items: center; font-weight: 500; }
.check-list li::before { content: '✓'; color: var(--primary); font-weight: bold; margin-right: 12px; font-size: 1.2rem; }
.dot-list li { display: flex; align-items: center; font-weight: 500; }
.dot-list li::before { content: '・'; color: var(--secondary); font-weight: bold; margin-right: 12px; font-size: 1.2rem; }

.diagnosis-flow { max-width: 900px; margin: 0 auto 60px; text-align: center; }
.diagnosis-flow h3 { font-size: 1.8rem; margin-bottom: 40px; }
.d-timeline { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.d-step { background: white; border: 2px solid var(--border-color); padding: 24px 40px; border-radius: 12px; width: 100%; max-width: 500px; position: relative; }
.step-num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--text-main); color: white; padding: 4px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 700; }
.d-step h4 { font-size: 1.2rem; margin-bottom: 8px; color: var(--primary); }
.d-step p { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
.d-arrow { font-size: 1.5rem; color: #cbd5e1; font-weight: bold; }

.diagnosis-footer { display: flex; align-items: center; justify-content: center; gap: 24px; background: white; padding: 32px; border-radius: 100px; max-width: 600px; margin: 0 auto; border: 1px solid var(--border-color); box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.d-profile-image { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid #e2e8f0; }
.d-profile-text p { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.d-profile-text strong { font-size: 1.2rem; color: #0f172a; }

@media (max-width: 768px) {
    .diagnosis-grid { grid-template-columns: 1fr; }
    .diagnosis-footer { flex-direction: column; text-align: center; border-radius: 24px; }
}

@media (max-width: 768px) {
    .future-plans-grid { grid-template-columns: 1fr !important; }
    .pricing-features { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    .desktop-arrow { display: none !important; }
    .mobile-arrow { display: inline !important; }
}

@media (max-width: 1024px) {
    .pricing-grid-3col { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 768px) {
    .pricing-grid-3col { grid-template-columns: 1fr !important; }
}
