/* ===== Variables & Reset ===== */
:root {
    /* Trustworthy Palette: Navy & Green (Finance/Tax) */
    --primary-color: #1a3c34;
    --secondary-color: #2c5e50;
    --accent-color: #27ae60;
    --accent-hover: #219150;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;

    --background-color: #f4f7f6;
    --card-bg: #ffffff;
    --text-color: #2d3436;
    --text-secondary: #636e72;
    --border-color: #dfe6e9;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Layout Structure (1100 표준) ===== */
.app-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

/* Main Content Area */
.app-main {
    flex: 3;
    min-width: 0;
    /* Prevent overflow */
    display: block;
}

/* Sidebar Area */
.app-sidebar {
    flex: 1;
    min-width: 300px;
    position: sticky;
    top: 2rem;
    align-self: flex-start;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.app-sidebar::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* ===== Header (풀블리드 · 좌측 정렬 · 앰버 다크) ===== */
.main-header {
    width: 100%;
    background: linear-gradient(135deg, #B45309 0%, #78350F 100%);
    color: #fff;
    padding: 2.2rem 1rem 1.8rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    max-width: none;
}
.main-header::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(251,191,36,.22), transparent 70%);
    pointer-events: none;
}
.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.header-text { flex: 1; min-width: 0; }
.main-header h1 {
    font-size: 1.65rem;
    color: #fff;
    margin: 0 0 .25rem;
    font-weight: 800;
    letter-spacing: -.3px;
    line-height: 1.25;
}
.main-header h1 a, .main-header h1 a.logo-link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.main-header .logo-emoji { font-size: 1.5rem; }
.main-header .subtitle {
    font-size: .95rem;
    color: rgba(255,255,255,.85);
    margin: 0;
    font-weight: 400;
}

.btn-share-header {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(4px);
    padding: .55rem 1rem;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .15s;
    margin: 0;
}
.btn-share-header:hover {
    background: rgba(255,255,255,.28);
    transform: translateY(-1px);
}

/* Top AdSense (풀블리드) */
.ad-container.top-ad {
    width: 100%;
    background: #f9fafb;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
}

@media (max-width: 600px) {
    .header-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .main-header h1 { font-size: 1.4rem; }
    .btn-share-header { align-self: stretch; text-align: center; }
}

.btn-share-header:hover {
    background: #f8f9fa;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Ad Containers */
.ad-container {
    width: 100%;
    margin: 2rem auto;
    text-align: center;
    clear: both;
}

/* top-ad는 풀블리드 (이미 위에서 정의됨) · middle-ad/bottom-ad는 800px 안에 contain */
.ad-container.middle-ad,
.ad-container.bottom-ad {
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden; /* AdSense 자동 폭 침범 방지 */
}
.ad-container.middle-ad ins.adsbygoogle,
.ad-container.bottom-ad ins.adsbygoogle {
    display: block !important;
    width: 100%;
    max-width: 800px;
}

/* ===== Calculator Form ===== */
.calculator-section {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    border-top: 5px solid var(--accent-color);
}

.calculator-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--background-color);
    padding-bottom: 0.5rem;
}

.alert-box {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-group {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.step-group:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.step-group h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    background: #f1f2f6;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-select,
.input-with-unit input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: 0.2s;
}

.form-select:focus,
.input-with-unit input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.input-with-unit {
    position: relative;
}

.input-with-unit input {
    padding-right: 40px;
    text-align: right;
}

.input-with-unit .unit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.input-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Toggle Switch */
.toggle-row {
    background: #fdfdfd;
    padding: 1rem;
    border: 2px solid #e1e1e1;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
}

.toggle-label {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
}

.toggle-label input {
    display: none;
}

.toggle-switch {
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-label input:checked+.toggle-switch {
    background: var(--accent-color);
}

.toggle-label input:checked+.toggle-switch::after {
    left: 26px;
}

/* Buttons */
.btn {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn:hover {
    background: #f8f9fa;
}

.btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: 0.2s;
    margin-top: 1rem;
    text-align: center;
    line-height: 1.2;
}

.btn-primary:hover {
    background: #142f29;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #95a5a6;
    color: white;
    width: 100%;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.btn-share-result {
    background: var(--accent-color);
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.btn-share-result:hover {
    background: var(--accent-hover);
}

/* ===== Result Section ===== */
.result-section {
    margin-top: 2rem;
    margin-bottom: 3rem;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 16px rgba(39, 174, 96, 0.15);
}

.result-card h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.result-summary {
    text-align: center;
    background: #f0f7f4;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.summary-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.badge-2026 {
    background: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 12px;
    vertical-align: middle;
    margin-left: 5px;
}

.final-tax-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
}

.detail-breakdown h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.breakdown-list {
    font-size: 0.95rem;
}

.highlight-credit {
    font-weight: bold;
    color: var(--accent-color);
}

/* ===== Info & FAQ ===== */
.info-section,
.faq-section {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.info-section h2,
.faq-section h2 {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.info-card {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.info-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-card ul {
    line-height: 1.8;
}

.table-container {
    overflow-x: auto;
    margin: 1rem 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.info-table th {
    background: #f1f2f6;
    padding: 10px;
    text-align: center;
}

.info-table td {
    border-bottom: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    margin-top: 10px;
    color: #555;
    font-size: 0.95rem;
    padding-left: 10px;
    border-left: 3px solid var(--accent-color);
}

/* ===== Footer ===== */
.main-footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
    background: var(--card-bg);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Sidebar Component (Matched Project 19) ===== */
.sidebar-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.7rem;
    display: inline-block;
    color: var(--primary-color);
}

.sidebar-list a {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    transition: transform 0.2s;
    color: #555;
}

.sidebar-list a:hover {
    transform: translateX(3px);
    color: var(--primary-color);
}

.link-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.link-content {
    display: flex;
    flex-direction: column;
}

.link-title {
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
}

.link-desc {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
    line-height: 1.4;
}

/* ===== Helper Classes ===== */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* ===== Mobile Responsive ===== */
@media (max-width: 900px) {
    .app-wrapper {
        flex-direction: column;
    }

    .app-sidebar {
        width: 100%;
        position: static;
        max-height: none;
        margin-top: 2rem;
    }
}

/* ===== Toast Notification ===== */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    font-weight: 600;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* ===== History Section ===== */
.history-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.history-header h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

.btn-clear-history {
    background: none;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #666;
    transition: all 0.2s;
}

.btn-clear-history:hover {
    background: #fff;
    border-color: var(--danger-color);
    color: var(--danger-color);
}

.history-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.history-empty {
    text-align: center;
    color: #999;
    padding: 2rem;
    font-size: 0.95rem;
}

.history-item {
    background: white;
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    cursor: pointer;
    transition: all 0.2s;
}

.history-item:hover {
    transform: translateX(5px);
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.1);
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.history-date {
    font-size: 0.85rem;
    color: #888;
}

.history-badge {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

.history-main {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.history-salary {
    font-size: 0.9rem;
    color: #666;
}

.history-result {
    font-size: 1rem;
    color: var(--primary-color);
}

.history-result strong {
    font-size: 1.1rem;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .final-tax-display {
        font-size: 2rem;
    }

    .info-section,
    .faq-section {
        padding: 1.5rem;
    }

    .calculator-section {
        padding: 1.5rem;
    }
}
/* ===== 중앙 광고 슬롯 시스템 (W35 표준 · 앰버) ===== */
.ad-slot { display: block; width: 100%; border-radius: 12px; overflow: hidden; background: linear-gradient(135deg, #B45309, #78350F); color: #fff; position: relative; box-shadow: 0 2px 8px rgba(0,0,0,.08); margin: 12px auto; }
.ad-slot.banner-wide { aspect-ratio: 4/1; max-width: 800px; }
.ad-slot.banner-square { aspect-ratio: 1/1; max-width: 320px; }
.ad-slot .ad-inner { position: absolute; inset: 0; padding: 16px 22px; display: flex; flex-direction: column; justify-content: center; z-index: 1; }
.ad-slot.has-image .ad-inner { background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,0)); }
.ad-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ad-slot .ad-label { position: absolute; top: 6px; right: 10px; font-size: 10px; opacity: .8; z-index: 2; }
.ad-slot .ad-title { font-size: 18px; font-weight: 800; line-height: 1.3; }
.ad-slot .ad-subtitle { font-size: 13px; opacity: .9; line-height: 1.4; }
.ad-slot .ad-cta { display: inline-block; align-self: flex-start; margin-top: 8px; padding: 6px 14px; background: rgba(255,255,255,.25); border-radius: 20px; font-size: 13px; font-weight: 700; }

.ad-slot.kakao-channel,
.ad-slot[data-ad-type="kakao-channel"] { background: #FEE500; }
.ad-slot.kakao-channel .ad-title,
.ad-slot[data-ad-type="kakao-channel"] .ad-title { color: #3C1E1E; }
.ad-slot.kakao-channel .ad-subtitle,
.ad-slot[data-ad-type="kakao-channel"] .ad-subtitle { color: rgba(60,30,30,.85); }
.ad-slot.kakao-channel .ad-cta,
.ad-slot[data-ad-type="kakao-channel"] .ad-cta { background: #3C1E1E; color: #FEE500; }

/* ===== controltower sidebar.js inject 마크업 ===== */
.sidebar-card { background: #fff; border-radius: 12px; padding: 14px; margin-bottom: 14px; box-shadow: 0 2px 8px rgba(0,0,0,.06); border: 1px solid #e5e7eb; }
.sidebar-card h3 { font-size: 14.5px; font-weight: 700; margin: 0 0 10px; color: #78350F; display: flex; align-items: center; gap: 6px; }
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { margin-bottom: 8px; }
.sidebar-list li:last-child { margin-bottom: 0; }
.sidebar-list a { display: flex; align-items: flex-start; gap: 8px; padding: 6px 8px; color: #1e293b; text-decoration: none; border-radius: 8px; transition: background .2s ease; }
.sidebar-list a:hover { background: #fffbeb; }
.link-content { flex: 1; min-width: 0; }
.link-title { display: block; font-size: 13.5px; font-weight: 600; color: #78350F; }
.link-desc { display: block; font-size: 12px; color: #64748b; margin-top: 2px; line-height: 1.4; }

/* ===== Scenario / Popular / Related / Info ===== */
.scenario-section, .popular-section, .related-section, .info-section-link {
  background: #fff; padding: 1.8rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(180,83,9,.10); margin-bottom: 1.5rem;
}
.scenario-section h2, .popular-section h2, .related-section h2, .info-section-link h2 {
  color: #78350F; margin: 0 0 12px; font-size: 1.4rem; font-weight: 800;
}
.scenario-section .section-intro, .popular-section .section-intro {
  color: #64748b; margin-bottom: 1rem; font-size: 14px;
}

.scenario-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.scenario-card { display: block; padding: 14px 16px; background: linear-gradient(135deg, #fffbeb, #fef3c7); border: 1px solid #fde68a; border-radius: 12px; text-decoration: none; color: inherit; transition: transform .15s, box-shadow .15s; }
.scenario-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(180,83,9,.15); border-color: #B45309; }
.scenario-head { font-weight: 800; color: #78350F; font-size: 15px; }
.scenario-sub { font-size: 13px; color: #475569; margin-top: 2px; }
.scenario-note { font-size: 12px; color: #64748b; margin-top: 4px; }

.popular-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.popular-tag { display: inline-flex; align-items: center; padding: 6px 12px; background: #fef3c7; border: 1px solid #fde68a; border-radius: 999px; font-size: 13px; color: #78350F; text-decoration: none; transition: all .15s; }
.popular-tag:hover { background: #B45309; color: #fff; border-color: #B45309; }

.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.related-link { display: flex; gap: 12px; padding: 14px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; text-decoration: none; color: inherit; transition: box-shadow .15s, transform .15s; }
.related-link:hover { box-shadow: 0 6px 18px rgba(0,0,0,.08); transform: translateY(-1px); border-color: #B45309; }
.rel-emoji { font-size: 28px; flex-shrink: 0; }
.rel-body { flex: 1; min-width: 0; }
.rel-title { font-size: 14.5px; font-weight: 700; color: #78350F; margin-bottom: 2px; }
.rel-desc { font-size: 12.5px; color: #64748b; line-height: 1.4; }

.info-grid-link { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.gov-link { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; text-decoration: none; color: #78350F; font-size: 14px; transition: all .15s; }
.gov-link:hover { background: #fffbeb; border-color: #B45309; }
.gov-emoji { font-size: 22px; flex-shrink: 0; }

/* ===== Bracket Table ===== */
.table-scroll { overflow-x: auto; }
.bracket-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bracket-table th { background: #B45309; color: #fff; padding: 10px 12px; text-align: left; font-weight: 700; }
.bracket-table td { padding: 10px 12px; border-bottom: 1px solid #e5e7eb; }
.bracket-table tr:hover { background: #fffbeb; }
.bracket-table .amt { font-weight: 800; color: #78350F; }
.bracket-table .muted { color: #64748b; font-size: 12.5px; display: block; margin-top: 2px; }
.bracket-note { background: #fffbeb; border-left: 3px solid #B45309; padding: 12px 14px; margin: 12px 0; font-size: 13.5px; color: #78350F; border-radius: 0 8px 8px 0; line-height: 1.7; }

/* ===== Hero Stats ===== */
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin: 14px 0; }
.hero-stat { background: linear-gradient(135deg, #fffbeb, #fef3c7); border: 1px solid #fde68a; border-radius: 12px; padding: 14px; text-align: center; }
.hero-stat-num { font-size: 22px; font-weight: 900; color: #78350F; }
.hero-stat-lbl { font-size: 13px; color: #475569; margin-top: 2px; }

/* ===== CTA Banner ===== */
.cta-banner { background: linear-gradient(135deg, #B45309 0%, #78350F 100%); color: #fff; padding: 1.6rem; border-radius: 14px; margin: 1rem 0 1.5rem; text-align: center; }
.cta-banner h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.cta-banner p { font-size: 14px; opacity: .92; margin-bottom: 12px; }
.cta-banner a { display: inline-block; background: #FBBF24; color: #1f2937; padding: 10px 20px; border-radius: 999px; font-weight: 700; font-size: 14px; text-decoration: none; }

/* ===== FAQ summary 화살표 중복 방지 ===== */
.faq-section .faq-item summary { list-style: none; }
.faq-section .faq-item summary::-webkit-details-marker { display: none; }
.faq-section .faq-item summary::marker { display: none; content: ""; }
