/* ==========================================================================
   DiligenceWorks Content Engine — Stylesheet
   Design: Editorial / refined financial services
   Fonts: DM Serif Display (headings) + DM Sans (body)
   Palette: Navy #0B1D3A, Warm white #FAFAF7, Accent #C4973B
   ========================================================================== */

:root {
    --navy: #0B1D3A;
    --navy-light: #132B52;
    --navy-muted: #2A3F5F;
    --white: #FAFAF7;
    --warm-gray: #E8E6E1;
    --mid-gray: #9B978F;
    --text: #1A1A18;
    --text-secondary: #4A4A45;
    --accent: #C4973B;
    --accent-light: #D4AD5C;
    --success: #2D6A4F;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --max-width: 1140px;
    --gutter: 2rem;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--accent); }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    border-bottom: 1px solid var(--warm-gray);
    padding: 1rem 0;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-radius: 4px;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--navy);
}
.site-nav { display: flex; gap: 1.5rem; }
.site-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}
.site-nav a:hover { color: var(--navy); }

/* ==========================================================================
   Geography Page — Hero
   ========================================================================== */

.geo-hero {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0 3.5rem;
}
.geo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    margin-bottom: 1.25rem;
}
.geo-hero-badge .flag { font-size: 1.3rem; }
.geo-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    font-weight: 400;
}
.geo-hero h1 em {
    font-style: normal;
    color: var(--accent-light);
}
.geo-bluf {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #C0BFB8;
    max-width: 48rem;
}

/* ==========================================================================
   Snapshot Cards
   ========================================================================== */

.geo-snapshot { padding: 3rem 0; background: var(--white); }
.geo-snapshot h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.snapshot-card {
    border: 1px solid var(--warm-gray);
    border-radius: 6px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.snapshot-card.snapshot-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    border: none;
    text-align: center;
    padding: 1.75rem;
}
.snapshot-card.snapshot-highlight .snapshot-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
}
.snapshot-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mid-gray);
    font-weight: 500;
}
.snapshot-value {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}
.fund-types h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.fund-type-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: var(--warm-gray);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ==========================================================================
   Content Sections
   ========================================================================== */

section { padding: 3rem 0; }
section:nth-child(even) { background: #F5F4F0; }
section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.3;
}
.section-intro {
    color: var(--text-secondary);
    max-width: 42rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}
.advantage-card {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--warm-gray);
    border-radius: 6px;
    background: var(--white);
}
.advantage-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.15rem;
}
.advantage-card p { font-size: 0.9rem; line-height: 1.6; }

/* Regulatory cards */
.regulatory-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.reg-card {
    border-left: 3px solid var(--accent);
    padding: 1.25rem;
    background: var(--white);
    border-radius: 0 6px 6px 0;
}
.reg-card h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}
.reg-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* Buyer cards */
.buyer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.buyer-card {
    border: 1px solid var(--warm-gray);
    border-radius: 6px;
    padding: 1.5rem;
    background: var(--white);
}
.buyer-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--navy);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--warm-gray);
}
.buyer-detail { margin-bottom: 0.75rem; }
.buyer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mid-gray);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}
.buyer-detail p { font-size: 0.9rem; line-height: 1.6; }

/* Partners */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.partner-card {
    padding: 1.25rem;
    border: 1px solid var(--warm-gray);
    border-radius: 6px;
    background: var(--white);
}
.partner-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.partner-type {
    font-size: 0.8rem;
    color: var(--mid-gray);
}

/* Modules */
.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.module-card {
    padding: 1.5rem;
    background: var(--navy);
    color: var(--white);
    border-radius: 6px;
    text-align: center;
}
.module-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
}

/* FAQ */
.geo-faq { background: var(--white) !important; }
.faq-list { max-width: 42rem; }
.faq-item {
    border-bottom: 1px solid var(--warm-gray);
    padding: 1rem 0;
}
.faq-item summary {
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1.5;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.faq-item summary::after {
    content: "+";
    font-size: 1.25rem;
    flex-shrink: 0;
    color: var(--mid-gray);
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    content: "−";
}
.faq-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-top: 0.75rem;
}

/* CTA */
.geo-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%) !important;
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}
.geo-cta h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}
.geo-cta p {
    color: #C0BFB8;
    margin-bottom: 1.5rem;
}
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all 0.2s;
}
.btn-primary {
    background: var(--accent);
    color: var(--navy);
}
.btn-primary:hover {
    background: var(--accent-light);
    color: var(--navy);
}

/* Meta */
.geo-meta {
    padding: 1rem 0;
    background: #F5F4F0;
}
.geo-meta p {
    font-size: 0.75rem;
    color: var(--mid-gray);
}

/* Extra content (from markdown) */
.geo-extra h2, .geo-extra h3 {
    font-family: var(--font-display);
    font-weight: 400;
}
.geo-extra h2 { font-size: 1.4rem; margin: 2rem 0 0.75rem; }
.geo-extra h3 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }
.geo-extra p { margin-bottom: 1rem; line-height: 1.75; max-width: 42rem; }
.geo-extra table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}
.geo-extra th, .geo-extra td {
    padding: 0.6rem 1rem;
    border: 1px solid var(--warm-gray);
    text-align: left;
}
.geo-extra th {
    background: var(--warm-gray);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--navy);
}

/* ==========================================================================
   Markets Index Page
   ========================================================================== */

.markets-hero {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0 3rem;
}
.markets-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
}
.markets-bluf {
    font-size: 1.05rem;
    color: #C0BFB8;
    max-width: 40rem;
    line-height: 1.75;
}

.markets-grid-section { padding: 3rem 0; }
.markets-tier { margin-bottom: 3rem; }
.markets-tier h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--warm-gray);
}
.markets-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}
.market-card {
    display: block;
    border: 1px solid var(--warm-gray);
    border-radius: 6px;
    padding: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: var(--text);
}
.market-card:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 12px rgba(11,29,58,0.08);
    color: var(--text);
}
.market-flag { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
.market-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.market-headline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.market-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.market-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
}
.market-badge--priority { background: var(--accent); color: var(--navy); }
.market-badge--qualified { background: var(--success); color: var(--white); }
.market-badge--monitor { background: var(--warm-gray); color: var(--text-secondary); }
.market-regulator {
    font-size: 0.75rem;
    color: var(--mid-gray);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--navy);
    color: #A0A09A;
    padding: 3rem 0 1.5rem;
    font-size: 0.85rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--navy-muted);
}
.footer-brand .logo-mark { margin-bottom: 0.75rem; }
.footer-brand p { margin-bottom: 0.3rem; }
.footer-address, .footer-uen { font-size: 0.8rem; color: #6B6B65; }
.footer-links h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.footer-links a {
    display: block;
    color: #A0A09A;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    padding-top: 1.25rem;
    text-align: center;
    font-size: 0.8rem;
    color: #6B6B65;
}



/* Language Switcher */
.lang-switcher {
    display: inline-flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 0.2rem;
}
.lang-switcher a {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s;
}
.lang-switcher a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.lang-switcher a.active {
    color: var(--navy);
    background: var(--accent);
    font-weight: 600;
}

/* ==========================================================================
   Safe Text Color Rules — prevent white text on light backgrounds
   ========================================================================== */

.geo-snapshot,
.geo-why,
.geo-regulatory,
.geo-buyers,
.geo-partners,
.geo-modules,
.geo-faq,
.geo-extra,
.geo-meta {
    color: var(--text);
}

.geo-snapshot h2,
.geo-snapshot h3,
.geo-why h2,
.geo-regulatory h2,
.geo-buyers h2,
.geo-partners h2,
.geo-modules h2,
.geo-faq h2 {
    color: var(--text);
}

.geo-snapshot p,
.geo-why p,
.geo-regulatory p,
.geo-buyers p,
.geo-partners p,
.geo-faq p {
    color: var(--text-secondary);
}

/* Module cards are navy background — white text is correct there */
.module-card,
.module-card h3 {
    color: var(--white);
}

/* CTA section is navy background — white text is correct */
.geo-cta,
.geo-cta h2 {
    color: var(--white);
}

/* Hero section is navy background — white/light text is correct */
.geo-hero,
.geo-hero h1 {
    color: var(--white);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    :root { --gutter: 1.25rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .geo-hero { padding: 2.5rem 0 2rem; }
    section { padding: 2rem 0; }
    .snapshot-grid { grid-template-columns: 1fr 1fr; }
    .markets-card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .site-header .container { flex-direction: column; gap: 0.75rem; }
    .snapshot-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Print / B&W
   ========================================================================== */

@media print {
    .site-header, .site-footer, .geo-cta, .site-nav { display: none; }
    .geo-hero { background: #fff; color: #000; padding: 1rem 0; }
    .geo-hero h1 em { color: #000; text-decoration: underline; }
    .geo-bluf { color: #333; }
    .snapshot-card.snapshot-highlight { background: #eee; color: #000; }
    .module-card { background: #eee; color: #000; }
    section:nth-child(even) { background: #fff; }
    .btn { border: 2px solid #000; }
    body { font-size: 11pt; }
}

/* ==========================================================================
   T01: Comparison Pages
   ========================================================================== */

.compare-hero { background: var(--navy); color: var(--white); padding: 4rem 0 3.5rem; }
.compare-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--accent-light); margin-bottom: 1.25rem;
}
.content-id {
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
    background: rgba(255,255,255,0.1); padding: 0.2rem 0.5rem; border-radius: 3px;
}
.compare-hero h1 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2; margin-bottom: 1.25rem; font-weight: 400; }
.compare-hero h1 em { font-style: normal; color: var(--accent-light); }
.compare-bluf { font-size: 1.05rem; line-height: 1.75; color: #C0BFB8; max-width: 48rem; }
.compare-table-section { padding: 3rem 0; }
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th, .compare-table td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--warm-gray); }
.compare-table th { background: var(--warm-gray); color: var(--navy); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 2px solid var(--navy); }
.compare-table .col-dw { background: rgba(196,151,59,0.06); }
.compare-table .col-comp { background: rgba(0,0,0,0.02); }
.feature-name { font-weight: 600; color: var(--navy); width: 20%; }
.compare-table td { line-height: 1.5; vertical-align: top; color: var(--text); }

.strengths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.strengths-column { padding: 1.5rem; border-radius: 6px; }
.strengths-competitor { background: #F5F4F0; border: 1px solid var(--warm-gray); }
.strengths-dw { background: rgba(196,151,59,0.08); border: 1px solid var(--accent); }
.strengths-column h2 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; margin-bottom: 1rem; }
.strengths-column ul { list-style: none; padding: 0; }
.strengths-column li { padding: 0.5rem 0; padding-left: 1.25rem; position: relative; font-size: 0.9rem; line-height: 1.5; }
.strengths-column li::before { content: "•"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.ideal-for { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--warm-gray); }
.ideal-for h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid-gray); margin-bottom: 0.5rem; }
.ideal-for p { font-size: 0.9rem; line-height: 1.6; }

.compare-verdict { padding: 3rem 0; }
.verdict-text { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; line-height: 1.7; border-left: 3px solid var(--accent); padding-left: 1.5rem; margin: 0; color: var(--text); max-width: 42rem; }

.compare-faq { padding: 3rem 0; background: var(--white) !important; }

/* ==========================================================================
   T05: Definition Pages
   ========================================================================== */

.definition-hero { background: var(--navy); color: var(--white); padding: 4rem 0 3.5rem; }
.definition-hero h1 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2; margin-bottom: 1.25rem; font-weight: 400; }
.definition-hero h1 em { font-style: normal; color: var(--accent-light); }
.definition-bluf { font-size: 1.1rem; line-height: 1.8; color: #C0BFB8; max-width: 48rem; }
.badge-ownable { background: var(--accent); color: var(--navy); padding: 0.15rem 0.5rem; border-radius: 3px; font-size: 0.65rem; font-weight: 700; }

.definition-process { padding: 3rem 0; }
.process-steps { max-width: 42rem; }
.process-step { display: flex; gap: 1.25rem; margin-bottom: 1.5rem; }
.step-number {
    flex-shrink: 0; width: 2.25rem; height: 2.25rem;
    background: var(--navy); color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; margin-top: 0.15rem;
}
.step-content h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--navy); }
.step-content p { font-size: 0.9rem; line-height: 1.6; color: var(--text-secondary); }

.definition-comparison { padding: 3rem 0; background: #F5F4F0; }

.myths-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; }
.myth-card { border: 1px solid var(--warm-gray); border-radius: 6px; padding: 1.5rem; background: var(--white); }
.myth-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: #B91C1C; font-weight: 600; margin-bottom: 0.35rem; }
.myth-text { font-size: 0.95rem; font-style: italic; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.5; }
.reality-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--success); font-weight: 600; margin-bottom: 0.35rem; }
.reality-text { font-size: 0.9rem; line-height: 1.6; }

.example-card { border: 1px solid var(--warm-gray); border-radius: 6px; overflow: hidden; max-width: 42rem; }
.example-scenario { padding: 1.5rem; background: var(--white); }
.example-impact { padding: 1.5rem; background: #F5F4F0; border-top: 1px solid var(--warm-gray); }
.example-card h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid-gray); margin-bottom: 0.5rem; }
.example-card p { font-size: 0.9rem; line-height: 1.7; }

.related-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.related-card {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.25rem; border: 1px solid var(--warm-gray); border-radius: 6px;
    font-size: 0.9rem; font-weight: 500; transition: border-color 0.2s;
}
.related-card:hover { border-color: var(--accent); color: var(--navy); }
.related-arrow { color: var(--accent); }

/* ==========================================================================
   T03: Best-For Pages
   ========================================================================== */

.best-hero { background: var(--navy); color: var(--white); padding: 4rem 0 3.5rem; }
.best-hero h1 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2; margin-bottom: 1.25rem; font-weight: 400; }
.year-tag { font-size: 0.6em; color: var(--accent-light); font-weight: 400; }
.best-bluf { font-size: 1.05rem; line-height: 1.75; color: #C0BFB8; max-width: 48rem; }

.best-criteria { padding: 3rem 0; }
.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.criteria-card { border-left: 3px solid var(--accent); padding: 1.25rem; background: var(--white); border-radius: 0 6px 6px 0; }
.criteria-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.criteria-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

.best-rankings { padding: 3rem 0; background: #F5F4F0; }
.rankings-list { max-width: 48rem; }
.rank-card { display: flex; gap: 1.25rem; padding: 1.5rem; border: 1px solid var(--warm-gray); border-radius: 6px; margin-bottom: 1rem; background: var(--white); }
.rank-card-dw { border-color: var(--accent); border-width: 2px; }
.rank-number {
    flex-shrink: 0; width: 2.5rem; height: 2.5rem;
    background: var(--navy); color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1rem;
}
.rank-card-dw .rank-number { background: var(--accent); color: var(--navy); }
.rank-content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; margin-bottom: 0.25rem; }
.rank-oneliner { font-size: 0.85rem; color: var(--mid-gray); font-style: italic; margin-bottom: 0.75rem; }
.rank-why { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.rank-details { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; }
.rank-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid-gray); font-weight: 600; display: block; margin-bottom: 0.2rem; }
.rank-detail p { font-size: 0.8rem; line-height: 1.4; }

.best-regulatory { padding: 3rem 0; }
.reg-note { border-left: 3px solid var(--accent); padding: 1.25rem; background: rgba(196,151,59,0.06); border-radius: 0 6px 6px 0; max-width: 42rem; }
.reg-note p { font-size: 0.9rem; line-height: 1.7; }

@media (max-width: 768px) {
    .strengths-grid { grid-template-columns: 1fr; }
    .rank-details { grid-template-columns: 1fr; }
}
