/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: #e8e6e3;
    background: #0d1520;
    line-height: 1.7;
    overflow-x: hidden;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
code { background: rgba(255,255,255,.08); padding: 2px 8px; border-radius: 4px; font-size: .85em; }

/* ===== TOC NAV ===== */
.toc-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    background: rgba(13,21,32,.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197,210,0,.15);
    transform: translateY(-100%);
    transition: transform .3s ease;
}
.toc-nav.visible { transform: translateY(0); }
.toc-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: center;
    min-height: 48px;
}
.toc-toggle {
    display: none; background: none; border: none; color: #C5D200;
    font-size: .9rem; font-weight: 600; cursor: pointer; padding: 12px 0;
}
.toc-links { display: flex; gap: 4px; }
.toc-link {
    padding: 12px 16px; color: rgba(255,255,255,.5);
    text-decoration: none; font-size: .8rem; font-weight: 500;
    letter-spacing: .03em; text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}
.toc-link:hover { color: #fff; }
.toc-link.active { color: #C5D200; border-bottom-color: #C5D200; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0d1520 0%, #141e33 40%, #1B2340 70%, #0d1520 100%);
    text-align: center;
    padding: 60px 24px;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(197,210,0,.1) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(197,210,0,.06) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-logo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    width: 320px; height: auto;
    opacity: .12;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 0 60px rgba(197,210,0,.3));
    animation: logoPulse 6s ease-in-out infinite;
}
@keyframes logoPulse {
    0%, 100% { opacity: .10; filter: drop-shadow(0 0 40px rgba(197,210,0,.2)); }
    50% { opacity: .18; filter: drop-shadow(0 0 80px rgba(197,210,0,.4)); }
}
.badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(197,210,0,.5);
    border-radius: 50px;
    font-size: .75rem; font-weight: 600;
    letter-spacing: 2px; color: #C5D200;
    margin-bottom: 24px;
}
.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800; line-height: 1.15;
    margin-bottom: 16px;
}
.accent { color: #C5D200; }
.hero-sub { font-size: 1.15rem; color: #b8b5b0; max-width: 600px; margin: 0 auto 40px; }
.highlight { color: #C5D200; font-weight: 700; }
.hero-stats {
    display: flex; gap: 40px; justify-content: center;
    margin-bottom: 40px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
    display: block; font-family: 'Outfit', sans-serif;
    font-size: 2.4rem; font-weight: 800; color: #fff;
}
.stat-label { font-size: .8rem; color: #8b8888; text-transform: uppercase; letter-spacing: 1px; }
.hero-ctas { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; justify-content: center; }
.cta-btn {
    display: inline-block; padding: 14px 32px; background: linear-gradient(135deg, #C5D200, #9aab00);
    color: #1B2340; text-decoration: none; border-radius: 8px; font-weight: 700; font-size: .95rem;
    transition: transform .2s, box-shadow .2s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(197,210,0,.3); }
.cta-outline {
    background: transparent; border: 1.5px solid rgba(197,210,0,.5); color: #C5D200;
}
.cta-outline:hover { background: rgba(197,210,0,.1); box-shadow: none; transform: translateY(-2px); }

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
    opacity: 0; transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.section.visible { opacity: 1; transform: translateY(0); }
.dark { background: #0d1520; }
.section:not(.dark) { background: #111b2e; }
.section-label {
    font-size: .75rem; font-weight: 600;
    letter-spacing: 3px; color: #C5D200;
    text-transform: uppercase; margin-bottom: 12px;
}
.section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700; margin-bottom: 16px;
}
.section-desc { color: #9e9b97; max-width: 600px; margin-bottom: 40px; }

/* ===== BRAND CARD ===== */
.brand-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px; padding: 32px;
    margin-bottom: 40px;
}
.brand-tagline { color: #C5D200; font-style: italic; margin-bottom: 16px; }
.brand-details { list-style: none; }
.brand-details li { padding: 6px 0; font-size: .9rem; color: #b8b5b0; border-bottom: 1px solid rgba(255,255,255,.04); }
.brand-details li strong { color: #e8e6e3; }
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.media-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px; padding: 14px;
    font-size: .85rem; font-weight: 500;
    display: flex; align-items: center; gap: 8px;
}
a.media-item { color: inherit; text-decoration: none; transition: background .2s, border-color .2s; }
a.media-item:hover { background: rgba(197,210,0,.1); border-color: rgba(197,210,0,.3); }

/* ===== PROBLEM CARD ===== */
.problem-card {
    background: linear-gradient(135deg, rgba(239,68,68,.06), rgba(239,68,68,.02));
    border: 1px solid rgba(239,68,68,.15);
    border-radius: 16px; padding: 32px;
}
.problem-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.problem-header h3 { color: #fca5a5; }
.problem-icon { font-size: 1.5rem; }
.problem-card > p { color: #b8b5b0; margin-bottom: 24px; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.problem-item {
    background: rgba(0,0,0,.3);
    border-radius: 12px; padding: 20px;
}
.problem-num { font-family: 'Outfit'; font-size: 1.6rem; font-weight: 800; color: rgba(239,68,68,.4); }
.problem-item h4 { margin: 4px 0 6px; font-size: .95rem; color: #fca5a5; }
.problem-item p { font-size: .82rem; color: #9e9b97; }

/* ===== KEYWORD GROUPS ===== */
/* SEO Status Analysis */
.seo-status-card {
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; padding: 32px;
}
.seo-status-intro { color: rgba(255,255,255,.5); font-size: .9rem; margin-bottom: 20px; }
.seo-rank-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.seo-rank-item {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px; padding: 24px; text-align: center;
}
.seo-rank-kw {
    font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 600;
    color: #C5D200; margin-bottom: 8px;
}
.seo-rank-pos {
    font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800;
    color: #fff; margin-bottom: 8px;
}
.seo-rank-note { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.5; }
.seo-swot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.seo-swot-item {
    border-radius: 12px; padding: 24px;
}
.seo-swot-item h4 { font-size: 1rem; margin-bottom: 12px; }
.seo-swot-item ul { list-style: none; padding: 0; }
.seo-swot-item li {
    font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6;
    padding: 4px 0 4px 16px; position: relative;
}
.seo-swot-item li::before { content: '·'; position: absolute; left: 0; color: rgba(255,255,255,.3); }
.seo-strength {
    background: rgba(34,197,94,.06); border: 1px solid rgba(34,197,94,.15);
}
.seo-strength h4 { color: #22c55e; }
.seo-weakness {
    background: rgba(239,68,68,.06); border: 1px solid rgba(239,68,68,.15);
}
.seo-weakness h4 { color: #ef4444; }

/* SEO Keyword Focus */
.seo-focus-card {
    background: rgba(255,255,255,.03); border: 1px solid rgba(197,210,0,.15);
    border-radius: 16px; padding: 32px; margin-bottom: 40px;
}
.seo-focus-card h3 { margin-bottom: 12px; }
.seo-focus-why { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 24px; line-height: 1.6; }
.seo-focus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.seo-focus-item {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px; padding: 24px;
}
.seo-focus-kw {
    font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700;
    color: #C5D200; margin-bottom: 16px;
}
.seo-focus-stats { display: flex; gap: 16px; margin-bottom: 16px; }
.seo-focus-stat { flex: 1; text-align: center; }
.seo-focus-label { display: block; font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.seo-focus-value { display: block; font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800; color: #fff; }
.accent-text { color: #C5D200 !important; }
.seo-focus-reason { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; }

.kw-group {
    margin-bottom: 32px;
    opacity: 0; transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}
.kw-group.visible { opacity: 1; transform: translateY(0); }
.kw-group-header {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px; border-radius: 12px 12px 0 0;
}
.kw-group-header.competitors { background: linear-gradient(135deg, rgba(239,68,68,.12), rgba(239,68,68,.04)); border: 1px solid rgba(239,68,68,.15); }
.kw-group-header.location { background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(59,130,246,.04)); border: 1px solid rgba(59,130,246,.15); }
.kw-group-header.generic { background: linear-gradient(135deg, rgba(34,197,94,.12), rgba(34,197,94,.04)); border: 1px solid rgba(34,197,94,.15); }
.kw-count {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; font-family: 'Outfit';
    font-size: 1.3rem; font-weight: 800; flex-shrink: 0;
}
.competitors .kw-count { background: rgba(239,68,68,.2); color: #fca5a5; }
.location .kw-count { background: rgba(59,130,246,.2); color: #93c5fd; }
.generic .kw-count { background: rgba(34,197,94,.2); color: #86efac; }
.kw-group-header h3 { font-size: 1rem; margin-bottom: 2px; }
.kw-group-header p { font-size: .8rem; color: #9e9b97; }
.kw-table {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.06);
    border-top: none; border-radius: 0 0 12px 12px;
    overflow: hidden;
}
.kw-table table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.kw-table th:first-child, .kw-table td:first-child { width: 60%; }
.kw-table th:last-child, .kw-table td:last-child { width: 40%; }
.kw-table thead { background: rgba(255,255,255,.03); }
.kw-table th { padding: 10px 16px; font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: #8b8888; text-align: left; font-weight: 600; }
.kw-table td { padding: 10px 16px; font-size: .85rem; border-top: 1px solid rgba(255,255,255,.04); }
.kw-table tr:hover { background: rgba(255,255,255,.02); }
.highlight-row td { color: #C5D200; font-weight: 600; }
.kw-footnote { font-size: .78rem; color: #6b6866; margin-top: 16px; font-style: italic; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 100px; }
.timeline::before {
    content: ''; position: absolute; left: 40px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, #d4a853, #f0c674, #d4a853);
}
.timeline-item {
    position: relative; margin-bottom: 40px;
    opacity: 0; transform: translateX(-20px);
    transition: opacity .5s ease, transform .5s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-month {
    position: absolute; left: -100px; top: 8px;
    width: 72px; padding: 6px 0;
    background: linear-gradient(135deg, #d4a853, #f0c674);
    border-radius: 8px; text-align: center;
    font-size: .7rem; font-weight: 800; color: #0a0a0f;
    line-height: 1.2;
}
.timeline-content {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px; padding: 24px;
}
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 12px; }
.timeline-content ul { list-style: none; }
.timeline-content li { padding: 6px 0; font-size: .88rem; color: #b8b5b0; position: relative; padding-left: 16px; }
.timeline-content li::before { content: '→'; position: absolute; left: 0; color: #C5D200; }
.timeline-content li strong { color: #e8e6e3; }

/* ===== CAMPAIGNS ===== */
.ceiling-callout {
    background: linear-gradient(135deg, rgba(212,168,83,.1), rgba(212,168,83,.03));
    border: 1px solid rgba(212,168,83,.25);
    border-radius: 12px; padding: 16px 20px; margin-bottom: 28px;
}
.ceiling-callout p { font-size: .88rem; color: #d4a853; line-height: 1.6; }
.ceiling-callout em { color: #f0c674; }
.channel-explain { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.channel-box {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px; padding: 24px;
}
.channel-icon { font-size: 1.8rem; margin-bottom: 12px; }
.channel-box h4 { font-size: 1.05rem; margin-bottom: 8px; }
.channel-where { font-size: .8rem; font-weight: 600; color: #C5D200; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.channel-box > p { font-size: .88rem; color: #b8b5b0; line-height: 1.6; }
.channel-how { font-size: .82rem; color: #8b8888; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06); }
.campaigns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.campaigns > .campaign-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 600px; margin: 0 auto; }
.campaign-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px; padding: 28px;
    opacity: 0; transform: translateY(20px);
    transition: all .5s ease;
}
.campaign-card.visible { opacity: 1; transform: translateY(0); }
.campaign-card:hover { transform: translateY(-4px); border-color: rgba(197,210,0,.3); }
.camp-badge {
    display: inline-block; padding: 4px 12px;
    border-radius: 6px; font-size: .7rem; font-weight: 700;
    letter-spacing: 1px; margin-bottom: 12px;
}
.camp-generic .camp-badge { background: rgba(34,197,94,.15); color: #86efac; }
.camp-competitor .camp-badge { background: rgba(239,68,68,.15); color: #fca5a5; }
.camp-location .camp-badge { background: rgba(59,130,246,.15); color: #93c5fd; }
.camp-pmax .camp-badge { background: rgba(212,168,83,.2); color: #f0c674; }
.camp-pmax { border-color: rgba(212,168,83,.2); }
.campaign-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.camp-type { font-size: .8rem; color: #8b8888; margin-bottom: 16px; }
.camp-detail { margin-bottom: 16px; }
.camp-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.04); font-size: .85rem; }
.camp-row span { color: #8b8888; }
.camp-row strong { color: #e8e6e3; font-size: .82rem; }
.camp-msg { font-size: .8rem; font-style: italic; color: #C5D200; padding: 12px; background: rgba(197,210,0,.06); border-radius: 8px; line-height: 1.5; }

/* ===== FORECAST ===== */
.forecast-card {
    background: linear-gradient(135deg, rgba(197,210,0,.08), rgba(197,210,0,.03));
    border: 1px solid rgba(197,210,0,.2);
    border-radius: 16px; padding: 32px;
}
.forecast-card h3 { margin-bottom: 24px; }
.forecast-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 16px; }
.forecast-item { text-align: center; }
.f-num { display: block; font-family: 'Outfit'; font-size: 1.8rem; font-weight: 800; color: #fff; }
.f-label { font-size: .72rem; color: #8b8888; text-transform: uppercase; letter-spacing: .5px; }
.forecast-note { font-size: .75rem; color: #6b6968; text-align: center; }

/* ===== ALLOC TABLE ===== */
.alloc-table { overflow-x: auto; }
.alloc-table table { width: 100%; border-collapse: collapse; }
.alloc-table th { padding: 10px 14px; font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: #8b8888; text-align: left; font-weight: 600; background: rgba(255,255,255,.03); }
.alloc-table td { padding: 10px 14px; font-size: .85rem; border-top: 1px solid rgba(255,255,255,.04); color: #b8b5b0; }
.alloc-table strong { color: #f0c674; }

/* ===== PRICING ===== */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.price-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px; padding: 28px;
    opacity: 0; transform: translateY(20px);
    transition: all .5s ease;
    position: relative;
    display: flex; flex-direction: column;
}
.price-card.visible { opacity: 1; transform: translateY(0); }
.price-card.featured {
    background: linear-gradient(135deg, rgba(197,210,0,.08), rgba(197,210,0,.04));
    border-color: rgba(197,210,0,.3);
    transform: scale(1.03);
}
.price-card.featured.visible { transform: scale(1.03); }
.price-tag {
    display: inline-block; padding: 4px 14px;
    background: rgba(197,210,0,.15); color: #C5D200;
    border-radius: 6px; font-size: .7rem; font-weight: 700;
    letter-spacing: 1px; margin-bottom: 16px; align-self: flex-start;
}
.price-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.price-desc { font-size: .85rem; color: #8b8888; margin-bottom: 20px; min-height: 40px; }
.price-features { list-style: none; margin-top: auto; }
.price-amount {
    font-family: 'Outfit'; font-size: 2.6rem; font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #C5D200, #a0b000);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.price-amount span { font-size: .85rem; font-weight: 500; }
.price-features { list-style: none; }
.price-features li { padding: 8px 0; font-size: .88rem; color: #b8b5b0; border-bottom: 1px solid rgba(255,255,255,.04); }

/* ===== TOTAL ===== */
.total-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px; padding: 32px;
}
.total-card h3 { margin-bottom: 20px; font-size: 1.1rem; }
.total-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.04); font-size: .95rem; color: #b8b5b0; }
.total-row span:first-child { flex: 1; }
.total-row span:last-child { white-space: nowrap; text-align: right; font-family: 'Outfit'; font-weight: 600; }
.total-final {
    border-bottom: none; border-top: 2px solid rgba(197,210,0,.3);
    margin-top: 8px; padding-top: 16px;
    font-size: 1.2rem; font-weight: 800; color: #fff;
}
.total-final span:last-child {
    background: linear-gradient(135deg, #C5D200, #a0b000);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0; text-align: center;
    border-top: 1px solid rgba(255,255,255,.06);
    color: #6b6968; font-size: .85rem;
}
.footer-date { margin-top: 6px; font-size: .75rem; }

/* ===== KPI FUNNEL ===== */
.kpi-funnel {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px; padding: 32px;
}
.kpi-funnel h3 { margin-bottom: 24px; }
.funnel-tiers { display: flex; flex-direction: column; gap: 12px; }
.funnel-tier { border-radius: 12px; overflow: hidden; }
.tier-label {
    padding: 10px 16px; font-size: .8rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
}
.tier-awareness .tier-label { background: rgba(59,130,246,.15); color: #93c5fd; }
.tier-interest .tier-label { background: rgba(234,179,8,.2); color: #fde047; }
.tier-conversion .tier-label { background: rgba(34,197,94,.15); color: #86efac; }
.tier-body { padding: 16px; background: rgba(0,0,0,.2); }
.tier-kpi { display: flex; justify-content: space-between; align-items: center; }
.tier-metric { font-size: .9rem; color: #b8b5b0; }
.tier-target { font-family: 'Outfit'; font-size: 1.1rem; font-weight: 700; color: #fff; }
.highlight-target {
    background: linear-gradient(135deg, #C5D200, #a0b000);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
}
.tier-meaning { font-size: .78rem; color: #6b6968; margin-top: 4px; }

/* ===== COMMITMENTS ===== */
.commitments {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px; padding: 32px;
}
.commitments h3 { margin-bottom: 24px; }
.commit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.commit-item {
    background: rgba(0,0,0,.2);
    border-radius: 12px; padding: 20px;
    border: 1px solid rgba(255,255,255,.04);
}
.commit-icon { font-size: 1.6rem; margin-bottom: 8px; }
.commit-item h4 { font-size: .95rem; margin-bottom: 6px; }
.commit-item p { font-size: .82rem; color: #9e9b97; line-height: 1.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .toc-toggle { display: block; width: 100%; text-align: left; }
    .toc-links {
        display: none; flex-direction: column; width: 100%;
        padding-bottom: 8px;
    }
    .toc-links.open { display: flex; }
    .toc-link { padding: 10px 0; border-bottom: none; }
    .toc-inner { flex-wrap: wrap; }
    .brand-card { grid-template-columns: 1fr; }
    .media-grid { grid-template-columns: 1fr; }
    .campaigns { grid-template-columns: 1fr; }
    .channel-explain { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .forecast-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-stats { gap: 24px; }
    .seo-rank-grid, .seo-swot-grid, .seo-focus-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .price-card.featured.visible { transform: none; }
    .kw-table { overflow-x: auto; }
    .commit-grid { grid-template-columns: 1fr; }
    .timeline { padding-left: 0; }
    .timeline::before { display: none; }
    .timeline-item { padding-left: 0; margin-bottom: 24px; }
    .timeline-month {
        position: relative;
        left: auto;
        top: auto;
        text-align: center;
        margin-bottom: 12px;
        display: inline-block;
        width: auto;
        padding: 8px 20px;
        font-size: .8rem;
    }
    .timeline-content {
        border-radius: 12px;
    }
    .timeline-content li { font-size: .84rem; }
}

/* ===== CMS ADMIN ===== */
.cms-overlay {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
    align-items: center; justify-content: center;
}
.cms-overlay.active { display: flex; }
.cms-login-box {
    background: #1B2340; border: 1px solid rgba(197,210,0,.3);
    border-radius: 16px; padding: 40px; text-align: center;
    max-width: 360px; width: 90%;
}
.cms-login-box h3 { font-family: 'Outfit'; font-size: 1.3rem; margin-bottom: 20px; color: #fff; }
.cms-login-box input {
    width: 100%; padding: 14px 16px; border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06); color: #fff; border-radius: 8px;
    font-size: 1rem; margin-bottom: 12px; outline: none;
}
.cms-login-box input:focus { border-color: #C5D200; }
.cms-login-box button {
    width: 100%; padding: 12px; border: none; border-radius: 8px;
    font-size: .95rem; font-weight: 700; cursor: pointer; margin-bottom: 8px;
}
#cms-login-btn {
    background: #C5D200; color: #1B2340;
}
#cms-login-btn:hover { background: #d4e100; }
.cms-close-btn {
    background: transparent; color: #8b8888; border: 1px solid rgba(255,255,255,.1) !important;
}
.cms-close-btn:hover { color: #fff; }

#cms-toolbar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
    background: #C5D200; color: #1B2340; padding: 12px 24px;
    align-items: center; justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(0,0,0,.3);
    font-family: 'Outfit'; font-weight: 700;
}
#cms-toolbar.active { display: flex; }
.cms-toolbar-label { font-size: .95rem; }
.cms-toolbar-actions { display: flex; gap: 8px; }
.cms-toolbar-actions button {
    padding: 8px 16px; border: none; border-radius: 6px;
    font-size: .85rem; font-weight: 600; cursor: pointer;
}
.cms-btn-save { background: #1B2340; color: #C5D200; }
.cms-btn-save:hover { background: #0d1520; }
.cms-btn-save:disabled { opacity: .6; cursor: not-allowed; }
.cms-btn-cancel { background: rgba(0,0,0,.15); color: #1B2340; }
.cms-btn-cancel:hover { background: rgba(0,0,0,.25); }
.cms-btn-reset { background: rgba(0,0,0,.1); color: #1B2340; }
.cms-btn-reset:hover { background: rgba(0,0,0,.2); }

/* Edit mode highlights */
.cms-edit-mode [data-cms][contenteditable="true"] {
    outline: 1px dashed rgba(197,210,0,.4);
    outline-offset: 2px;
    transition: outline-color .2s;
    cursor: text;
    min-height: 1em;
}
.cms-edit-mode [data-cms][contenteditable="true"]:hover {
    outline-color: rgba(197,210,0,.8);
}
.cms-edit-mode [data-cms][contenteditable="true"]:focus {
    outline: 2px solid #C5D200;
    outline-offset: 3px;
    background: rgba(197,210,0,.05);
}

/* Push content up when toolbar is visible */
.cms-edit-mode { padding-bottom: 60px; }

.cms-label {
    display: block; text-align: left; font-size: .8rem;
    color: #aaa; margin-bottom: 4px; margin-top: 12px;
}
.cms-login-box input[type="text"],
.cms-login-box input[type="url"] {
    width: 100%; padding: 12px 14px; border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06); color: #fff; border-radius: 8px;
    font-size: .95rem; margin-bottom: 8px; outline: none;
}
.cms-login-box input[type="text"]:focus,
.cms-login-box input[type="url"]:focus { border-color: #C5D200; }

.forecast-intro {
    color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 16px;
}
