:root {
    --kyoto-blue: #13BED0;
    /* Kyoto Aquarium Teal */
    --kyoto-navy: #1a3a5a;
    --emerald-bg: #e0f2f1;

    --primary-blue: var(--kyoto-navy);
    --accent-blue: var(--kyoto-blue);
    --bg-light: var(--emerald-bg);
}

body {
    background-color: var(--emerald-bg);
    color: var(--kyoto-navy);
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin: 0;
    line-height: 1.6;
}

.section-container,
.flow-node,
.analysis-item,
.mission-panel {
    border: none !important;
}

/* 枠組みスタイル（NEW） */
/* 「目指すサイクル」のコンテナ */
.cycle-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 各カードのスタイル */
.cycle-card {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Ensure the band doesn't overflow corners */
}

/* カードのタイトル（水色の帯・白文字） */
.cycle-card h4 {
    background: var(--kyoto-blue);
    color: white;
    padding: 10px 0;
    margin: 10px -25px 20px -25px;
    /* 親のpadding(25px)を打ち消して帯にする */
    font-size: 1.1rem;
    font-weight: 700;
}

/* 中央の「ハブ」を強調 */
.hub-card {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* 継続レポート */
.retention-card {
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--kyoto-blue);
    margin: 10px 0;
    text-align: center;
}

.step-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

/* --- Sphere Layout (unchanged) --- */
.sphere-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 120px;
    padding: 60px 0;
}

.sphere-stage {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

.ripple-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--kyoto-blue);
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
    animation: spin-orbit 12s linear infinite;
}

.ripple-bg::after {
    content: '';
    display: block !important;
    position: absolute;
    top: -8px;
    left: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 10px var(--kyoto-blue), 0 0 20px var(--kyoto-blue);
    transform: translateX(-50%);
}

.ripple-bg::before,
.sphere-stage::before,
.sphere-stage::after {
    display: none !important;
    content: none !important;
}

@keyframes spin-orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sphere-node {
    position: absolute;
    width: 150px;
    height: 150px;
    background: white;
    color: var(--kyoto-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sphere-node:hover {
    transform: scale(1.05);
}

.sphere-node.active {
    background: var(--kyoto-navy) !important;
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(26, 58, 90, 0.3);
}

.sphere-node.active .name {
    color: white !important;
}

.sphere-node.active .role {
    color: #cbd5e1 !important;
}

.node-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    word-break: keep-all;
}

.sphere-node .name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.sphere-node .role {
    font-size: 0.8rem;
    line-height: 1.3;
    color: #64748b;
}

.node-miyanaga {
    top: -75px;
    left: 65px;
}

.node-ohno {
    bottom: -25px;
    right: -55px;
}

.node-yasaki {
    bottom: -25px;
    left: -55px;
}

.node-client {
    position: absolute;
    bottom: -25px;
    left: -230px;
    top: auto;
    right: auto;
    background: var(--kyoto-blue);
    color: white;
}

.node-client .name,
.node-client i {
    color: white !important;
}

.node-client.active {
    background: var(--kyoto-blue) !important;
    transform: scale(1.1);
}

.sync-connector {
    position: absolute;
    display: block !important;
    left: -80px;
    bottom: 50px;
    top: auto;
    width: 25px;
    height: 3px;
    background: var(--kyoto-blue);
    z-index: 5;
}

.sync-connector::after {
    content: '';
}

.mission-panel {
    width: 360px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    min-height: 200px;
}

/* --- Global Utilities --- */
.section-title {
    text-align: center;
    color: var(--kyoto-navy);
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 5rem;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
}

.flow-arrow {
    color: var(--kyoto-blue);
    font-size: 1.2rem;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-container {
    margin-bottom: 6rem;
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 6rem;
}

.water-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 90% 10%, rgba(0, 160, 233, 0.03), transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(26, 58, 90, 0.02), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Yellow Marker Highlight */
.text-marker {
    background: linear-gradient(transparent 60%, #fff176 60%);
    padding: 0 4px;
    font-weight: 700;
}

/* Card Icons */
.card-icon {
    font-size: 2.5rem;
    color: var(--kyoto-blue);
    margin-bottom: 5px;
    display: block;
}

/* --- Report Sample Section (Refined A4 Style) --- */
.report-sample-a4 {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    border: none;
    /* 線を消去 */
    overflow: hidden;
}

/* 背景装飾 */
.report-watermark {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(19, 190, 208, 0.03);
    pointer-events: none;
    user-select: none;
}

.report-header-ui {
    margin-bottom: 40px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 25px;
}

.report-tag {
    font-size: 0.7rem;
    color: var(--kyoto-blue);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.report-main-title {
    font-size: 2rem;
    /* ジャンプ率アップ */
    letter-spacing: -0.02em;
    color: var(--kyoto-navy);
    margin: 10px 0;
}

.report-main-title small {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 300;
    margin-left: 10px;
}

.report-content-grid {
    display: grid;
    /* grid-template-columns set via media query for desktop */
    gap: 40px;
    align-items: stretch;
}

@media (min-width: 769px) {
    .report-content-grid {
        grid-template-columns: 1fr 1fr 1fr 1.4fr;
        /* ABテスト枠を追加 */
    }
}

/* Mobile optimization for report grid */
@media (max-width: 768px) {
    .report-content-grid {
        grid-template-columns: 1fr;
    }
}

/* ラベル装飾 */
.category-label {
    font-size: 0.85rem;
    color: var(--kyoto-blue);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    padding-left: 0;
    border-left: none;
}

.sub-category-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* 数値表示 */
.score-display {
    line-height: 1;
}

.score-num {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--kyoto-navy);
    line-height: 1;
}

.score-unit {
    font-size: 1rem;
    color: #94a3b8;
    margin-left: 5px;
}

.trend-tag {
    display: inline-block;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    background: #f0fdf4;
    color: #166534;
    margin-top: 10px;
}

/* キーワードリスト */
.keyword-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.keyword-list li {
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
    display: flex;
    justify-content: space-between;
}

.kw-rank {
    color: #e11d48;
    font-weight: 700;
}

.kw-rank-stable {
    color: #64748b;
    font-weight: 700;
}

.insight-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.insight-box strong {
    color: #e11d48;
    display: block;
    margin-bottom: 8px;
}

.performance-score {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.performance-score strong {
    color: var(--kyoto-navy);
    font-size: 1.1rem;
}


/* 改善処方箋（最重要） */
.prescription-highlight {
    background: #f8fafc;
    padding: 35px;
    border-radius: 18px;
    position: relative;
    border-top: 4px solid var(--kyoto-blue) !important;
    box-shadow: none;
    /* Override previous shadow */
}

.prescription-label {
    color: #e11d48 !important;
    border-left: none !important;
}

.ai-box {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    font-size: 0.9rem;
    color: var(--kyoto-navy);
}

.ai-icon {
    color: var(--kyoto-blue);
    font-size: 1.2rem;
}

/* ロールタグ */
.member-role-tag {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--kyoto-navy);
    color: white;
    height: 1.2rem;
    line-height: 1.2rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.suggestion-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
    align-items: flex-start;
}

.suggestion-item:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.suggestion-item p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #334155;
    margin: 0;
}

/* --- AB Test Section Styles --- */
.ab-test-column {
    display: flex;
    flex-direction: column;
}

.ab-comparison-ui {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 25px;
}

.ab-card {
    flex: 1;
    padding: 20px 10px;
    border-radius: 12px;
    background: #f8fafc;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
}

.ab-card.winner {
    background: #fff;
    border-color: var(--kyoto-blue);
    box-shadow: 0 10px 25px rgba(19, 190, 208, 0.1);
    transform: translateY(-5px);
}

.ab-tag {
    font-size: 0.65rem;
    color: #64748b;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.ab-stat {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--kyoto-navy);
    line-height: 1.2;
}

.ab-card.winner .ab-stat {
    font-size: 3rem;
    /* WIN側を大きく */
    color: #e11d48;
    /* 目立つ赤色（またはゴールド #f59e0b） */
    text-shadow: 0 2px 10px rgba(225, 29, 72, 0.1);
}

.ab-stat small {
    font-size: 1rem;
    color: #94a3b8;
    margin-left: 2px;
}

.ab-unit {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-left: 2px;
}

.ab-vs {
    font-weight: 900;
    color: #cbd5e1;
    font-style: italic;
    font-size: 1.2rem;
}

.winner-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    /* ゴールド */
    color: white;
    font-size: 0.7rem;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    white-space: nowrap;
}

.ab-desc {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 8px;
}

.expert-insight {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

/* --- Report New Grid Layout (Refined) --- */

/* レポート全体の幅を維持しつつ、右端のはみ出しを防止 */
.report-sample-a4 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
    /* パディングを含めた幅計算 */
}

/* 上段の3カラム */
.report-upper-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

/* 下段：横長ワイド（はみ出し修正） */
.report-lower-wide {
    width: 100%;
    box-sizing: border-box;
    padding: 30px !important;
    background: #f0f9ff !important;
    border-radius: 16px;
    margin-top: 20px;
}

.prescription-flex {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.ai-side-panel {
    flex: 0 0 200px;
}

/* 提案の横並び（ラベルが上のスタイル） */
.suggestion-row {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.suggestion-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* ラベルとテキストの間隔 */
}

.suggestion-block .member-role-tag {
    align-self: flex-start;
    /* 左寄せ */
}

.suggestion-block p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #334155;
    margin: 0;
}

/* ABテスト直下の考察もラベルを上に */
.expert-insight-compact {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* 改めて処方箋を目立たせる */
.prescription-highlight {
    background: #f0f9ff !important;
    /* 僅かに青みを持たせて結論感を出す */
    border-top: none !important;
    border-left: 5px solid var(--kyoto-blue) !important;
    /* 左側にアクセント */
}

@media (max-width: 992px) {

    .report-upper-grid,
    .suggestion-row,
    .prescription-flex {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

/* --- Technical Score & Legend Styles --- */

/* ヘッダーを横並びに変更 */
.report-header-ui-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 25px;
}

/* テクニカル診断パネル（右上の得点） */
.technical-score-panel {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #f8fafc;
    padding: 15px 25px;
    border-radius: 12px;
}

.score-item-main {
    text-align: right;
}

.score-label {
    font-size: 0.7rem;
    color: var(--kyoto-blue);
    font-weight: 700;
    display: block;
}

.score-big {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--kyoto-navy);
    line-height: 1;
}

.score-max {
    font-size: 1rem;
    color: #94a3b8;
    margin-left: 5px;
}

.score-details-mini {
    border-left: 1px solid #e2e8f0;
    padding-left: 20px;
}

.mini-score {
    font-size: 0.7rem;
    color: #64748b;
    margin-bottom: 2px;
}

.mini-score span {
    font-weight: 700;
    color: var(--kyoto-navy);
    margin-left: 8px;
}

/* 用語解説セクション（一番下） */
.report-legend-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
}

.legend-title {
    font-size: 0.9rem;
    color: var(--kyoto-blue);
    margin-bottom: 15px;
}

.legend-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.legend-item strong {
    font-size: 0.85rem;
    color: var(--kyoto-navy);
    display: block;
    margin-bottom: 5px;
}

.legend-item p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* --- Brand Header Design --- */
.main-brand-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 20px;
    position: relative;
}

/* コンセプト文（水に浮かぶガラス風） */
.brand-concept {
    font-size: 1.1rem;
    color: var(--kyoto-blue);
    /* 水色 */
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    padding: 5px 20px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

/* Raku-Site ロゴ */
.brand-logo {
    font-size: 5rem;
    /* インパクト大 */
    font-weight: 800;
    color: var(--kyoto-navy);
    /* 濃い紺色 */
    margin: 0;
    line-height: 1;
    letter-spacing: -0.03em;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    text-shadow: 0 10px 30px rgba(19, 190, 208, 0.15);
    /* 淡い光彩 */
}

.brand-logo span {
    color: var(--kyoto-blue);
    /* -Site部分を水色に */
}

/* サブタイトル */
.brand-sub {
    font-size: 1rem;
    color: #64748b;
    margin-top: 10px;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* セクション区切り調整 */
.section-divider {
    margin-bottom: 40px;
    text-align: center;
}

.section-divider .section-title {
    font-size: 1.5rem;
    opacity: 0.7;
    /* メインより少し控えめに */
    margin-bottom: 2rem;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .brand-concept {
        font-size: 0.9rem;
    }

    .brand-logo {
        font-size: 3.5rem;
    }
}

/* --- Login Gate Styles (Added) --- */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(224, 242, 241, 0.98);
    /* ほぼ不透明なエメラルドホワイト */
    backdrop-filter: blur(10px);
    z-index: 99999;
    /* 最前面を保証 */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.login-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(26, 58, 90, 0.15);
    text-align: center;
    width: 90%;
    max-width: 320px;
}

.login-logo {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--kyoto-navy, #1a3a5a);
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
}

.login-logo span {
    color: var(--kyoto-blue, #13BED0);
}

.login-text {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 25px;
    font-weight: 700;
}

.input-group {
    margin-bottom: 15px;
}

.login-box input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    box-sizing: border-box;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.login-box input:focus {
    border-color: var(--kyoto-blue, #13BED0);
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: var(--kyoto-navy, #1a3a5a);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 5px;
    transition: transform 0.2s;
}

.login-btn:hover {
    transform: translateY(-2px);
}

.login-error {
    color: #e11d48;
    font-size: 0.75rem;
    margin-top: 15px;
    font-weight: 700;
    display: none;
}

/* --- Business Model Visuals (New Added) --- */
.biz-comparison-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.biz-card {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.biz-card.plan-b {
    border-color: #e2e8f0;
    background: #f8fafc;
}

.biz-card.plan-a {
    border-color: var(--kyoto-blue);
    background: white;
    box-shadow: 0 20px 50px rgba(19, 190, 208, 0.15);
    z-index: 2;
    transform: scale(1.02);
}

.rec-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kyoto-blue);
    color: white;
    font-weight: 800;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    box-shadow: 0 5px 15px rgba(19, 190, 208, 0.3);
}

.biz-header h3 {
    font-size: 1.4rem;
    color: var(--kyoto-navy);
    margin: 10px 0;
}

.biz-tag,
.biz-tag-rec {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.biz-tag {
    background: #cbd5e1;
    color: white;
}

.biz-tag-rec {
    background: var(--kyoto-navy);
    color: white;
}

.biz-desc {
    font-size: 0.9rem;
    color: #64748b;
    height: 3em;
}

.biz-price-area {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px dashed #e2e8f0;
    border-bottom: 1px dashed #e2e8f0;
    text-align: center;
}

.initial-cost .label,
.monthly-cost .label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 5px;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #64748b;
}

.price-small {
    font-size: 1.4rem;
    font-weight: 800;
    color: #64748b;
}

.price-zero {
    font-size: 3rem;
    font-weight: 800;
    color: #e11d48;
    line-height: 1;
}

.price-range {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--kyoto-navy);
}

.unit {
    font-size: 0.9rem;
    font-weight: normal;
    margin-left: 2px;
}

.biz-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.biz-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.biz-features li i {
    font-size: 1.2rem;
    color: var(--kyoto-blue);
}

.biz-features li.disabled {
    color: #cbd5e1;
}

.biz-features li.disabled i {
    color: #cbd5e1;
}

.biz-note {
    font-size: 0.8rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 20px;
}

.biz-vs {
    align-self: center;
    font-weight: 900;
    color: #cbd5e1;
    font-size: 1.5rem;
    background: white;
    padding: 10px;
    border-radius: 50%;
    z-index: 3;
}

/* Tier Section */
.tier-section {
    margin-top: 50px;
    text-align: center;
}

.tier-title {
    font-size: 1.2rem;
    color: var(--kyoto-navy);
    margin-bottom: 30px;
}

.tier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.tier-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}

.tier-card.standard {
    border: 2px solid var(--kyoto-blue);
    background: #f0fdf4;
    position: relative;
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(19, 190, 208, 0.1);
}

.pop-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: 700;
}

.tier-icon {
    font-size: 2.5rem;
    color: var(--kyoto-navy);
    margin-bottom: 10px;
}

.tier-card.standard .tier-icon {
    color: var(--kyoto-blue);
}

.tier-head h4 {
    margin: 0;
    color: var(--kyoto-navy);
}

.tier-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--kyoto-navy);
    margin: 10px 0;
}

.tier-body ul {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.85rem;
}

.tier-body ul li {
    padding: 5px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.faded {
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .biz-comparison-container {
        flex-direction: column;
        gap: 40px;
    }

    .tier-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .biz-vs {
        transform: rotate(90deg);
        margin: -20px 0;
    }
}