* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --bg-primary: #f5f7fa;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f0faf5;
    --bg-header: #1a2e4a;
    --bg-footer: #152538;
    --bg-hero: #ffffff;
    --accent-primary: #22c55e;
    --accent-hover: #16a34a;
    --accent-dark: #15803d;
    --accent-light: #4ade80;
    --accent-blue: #3b9fe7;
    --accent-blue-hover: #2d8bd4;
    --text-primary: #333333;
    --text-secondary: #555555;
    --text-muted: #888888;
    --text-white: #ffffff;
    --border-color: #e4e8ec;
    --border-hover: #22c55e;
    --divider: #e0e0e0;
    --partner-logo-bg: #f0f4f8;
    --partner-rating: #f5a623;
    --success: #22c55e;
    --warning: #f5a623;
    --error: #e74c3c;
    --info: #3b9fe7;
    --font-primary: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --prose-flow: 14px;
}
body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
p {
    margin: 0;
    color: var(--text-secondary);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.section p a,
.section li a {
    color: var(--accent-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}
.section p a:hover,
.section li a:hover {
    color: var(--accent-hover);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-primary);
    margin: 0;
}
.prose > h2,
.prose > h3,
.prose > h4,
.prose > p {
    margin-block: var(--prose-flow);
    margin-inline: 0;
}
.prose > ul,
.prose > ol {
    margin-block: var(--prose-flow);
    margin-inline: 0;
    padding-left: 1.35em;
}
.prose ul ul,
.prose ol ol,
.prose li > ul,
.prose li > ol {
    margin-block: var(--prose-flow);
}
.prose > :first-child {
    margin-block-start: 0;
}
.prose > :last-child {
    margin-block-end: 0;
}
.prose li {
    margin-block: var(--prose-flow);
}
.prose li:first-child {
    margin-block-start: 0;
}
.prose li:last-child {
    margin-block-end: 0;
}
.hero-content > * {
    margin-block: var(--prose-flow);
    margin-inline: 0;
}
.hero-content > :first-child {
    margin-block-start: 0;
}
.hero-content > :last-child {
    margin-block-end: 0;
}
.prose > .section-title {
    margin-block: var(--prose-flow);
    margin-inline: 0;
}
.prose > .section-title:first-child {
    margin-block-start: 0;
}
.prose > .section-title h2,
.prose > .section-title h3 {
    margin: 0;
}
.prose > .section-title + .blog-grid,
.prose > .section-title + .faq-list,
.prose > h2 + .blog-grid,
.prose > h2 + .faq-list {
    margin-block-start: 0;
}
.prose > .blog-grid,
.prose > .faq-list {
    margin-block: var(--prose-flow);
}
.prose > .review-info-table,
.prose > .review-info-grid,
.prose > .page-toc {
    margin-block: var(--prose-flow);
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}
[id] {
    scroll-margin-top: 130px;
}
@media (max-width: 768px) {
    html {
        scroll-padding-top: 110px;
    }
    [id] {
        scroll-margin-top: 110px;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.main-header {
    background: linear-gradient(135deg, #1a2e4a 0%, #243b5e 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    --mobile-nav-top: 85px;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 16px 12px;
    gap: 28px;
    min-height: 84px;
}
.header-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.header-brand:hover {
    opacity: 0.95;
}
.header-logo-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 56px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.header-logo-img {
    display: block;
    max-height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
@media (max-width: 640px) {
    .header-logo-slot {
        min-width: 140px;
        min-height: 48px;
        padding: 6px 10px;
    }
    .header-logo-img {
        max-height: 40px;
    }
}
.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 4px;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 18px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}
.nav-menu > li > a::after {
    display: none;
}
.nav-menu > li > a:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.nav-item-has-dropdown {
    position: relative;
}
.nav-item-has-dropdown > a {
    padding: 11px calc(3.25rem + 5px) 11px 1.1rem;
}
.nav-item-has-dropdown > a::before {
    content: '';
    position: absolute;
    right: calc(0.65rem - 5px);
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.85);
    transition: transform 0.2s ease, border-top-color 0.2s ease;
}
.nav-item-has-dropdown:hover > a::before {
    transform: translateY(-20%);
    border-top-color: var(--accent-light);
}
.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 228px;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1001;
    border-left: 3px solid var(--accent-primary);
}
.nav-item-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown li {
    border: none;
    margin: 0;
    padding: 0;
}
.nav-dropdown a {
    display: block;
    margin: 2px 0;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}
.nav-dropdown a::after {
    display: none;
}
.nav-dropdown a:hover {
    background: rgba(34, 197, 94, 0.12);
    color: var(--accent-dark);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1005;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    position: relative;
}
.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: none;
    position: relative;
}
.mobile-toggle:hover span {
    background: var(--accent-light);
}
.mobile-toggle.active span:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    display: none;
}
.mobile-toggle.active span:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
@media (max-width: 999px) {
    .main-header {
        z-index: 1004;
    }
    .mobile-toggle {
        display: flex;
        margin-left: auto;
        position: relative;
        z-index: 1006;
    }
    .main-nav {
        position: fixed;
        top: calc(var(--mobile-nav-top) - 1px);
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: calc(100vh - var(--mobile-nav-top) + 1px);
        height: calc(100dvh - var(--mobile-nav-top) + 1px);
        margin-left: 0;
        background: var(--bg-header);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0 28px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 1003 !important;
        overflow-y: auto;
        border-left: 2px solid var(--accent-primary);
    }
    .main-nav.active {
        right: 0;
    }
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .nav-menu > li > a {
        display: block;
        width: 100%;
        border-radius: 0;
        padding: 16px 24px;
        font-size: 15px;
        box-shadow: none;
    }
    .nav-menu > li > a:hover {
        box-shadow: none;
    }
    .nav-menu a {
        display: block;
        width: 100%;
    }
    .nav-menu a::after {
        display: none;
    }
    .nav-menu a:hover {
        color: var(--accent-light);
        background: rgba(34, 197, 94, 0.15);
    }
    .nav-item-has-dropdown .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    .nav-item-has-dropdown .nav-dropdown a {
        margin: 3px 0;
        padding: 11px 16px 11px 40px;
        line-height: 1.45;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 14px;
    }
    .nav-item-has-dropdown .nav-dropdown a:hover {
        color: var(--accent-light);
        background: rgba(34, 197, 94, 0.15);
    }
    .nav-item-has-dropdown > a {
        padding-right: 24px;
        padding-left: 24px;
    }
    .nav-item-has-dropdown > a::before {
        display: none;
    }
}
.hero-section {
    background: var(--bg-hero);
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--border-color);
}
.hero-content {
    max-width: 700px;
}
.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    margin: 0;
    letter-spacing: 0.5px;
}
.hero-content h1 {
    font-size: 40px;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}
.hero-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}
.hero-section--split .hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, min(48vw, 520px));
    gap: 40px;
    align-items: center;
    margin-top: 8px;
}
.hero-section--split .hero-content {
    max-width: 640px;
}
.hero-section--split .hero-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    background: var(--bg-card);
}
@media (max-width: 900px) {
    .hero-section--split .hero-split {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero-section--split .hero-media {
        max-width: 520px;
    }
}
.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 4px 0;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: var(--shadow-sm);
}
.hero-feature-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}
.hero-feature div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.hero-feature strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}
.hero-feature span {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.2;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--accent-primary);
    color: var(--text-white);
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    white-space: nowrap;
}
.btn-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    color: var(--text-white);
}
.btn-cta svg {
    width: 18px;
    height: 18px;
}
.btn-cta--outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    box-shadow: none;
}
.btn-cta--outline:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}
.section {
    padding: 28px 0;
    background: var(--bg-primary);
}
.section-title {
    margin-block: var(--prose-flow);
    margin-inline: 0;
}
.section-title h1,
.section-title h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}
.section-title h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.blog-card-thumb {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}
.blog-card-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.blog-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.blog-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}
.blog-card-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: auto;
}
@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .blog-card-thumb {
        height: 120px;
    }
}
@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.partner-listing {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.partner-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
    border-left: 4px solid var(--accent-primary);
}
.partner-card:hover {
    box-shadow: var(--shadow-md);
}
.partner-card-logo {
    width: 120px;
    height: 80px;
    background: var(--partner-logo-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.partner-card-logo--black-bg {
    --partner-logo-bg: #111111;
}
.partner-card-logo--white-bg {
    --partner-logo-bg: #ffffff;
}
.partner-card-logo img,
.partner-card-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.partner-card-logo--cover img,
.partner-card-logo--cover .partner-card-logo-img {
    object-fit: cover;
}
.partner-card-logo--inline {
    display: none;
}
.partner-card-logo-placeholder {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-blue) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 20px;
}
.partner-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.partner-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.partner-card-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}
.partner-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
}
.partner-card-rating .star {
    color: var(--partner-rating);
}
.partner-card-rating .score {
    color: var(--text-primary);
}
.partner-card-rating .max {
    color: var(--text-muted);
    font-weight: 400;
}
.partner-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
}
.partner-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}
.partner-card-meta-item .meta-icon {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
}
.partner-card-meta-item .meta-label {
    color: var(--text-muted);
}
.partner-card-meta-item--full {
    width: 100%;
    flex-basis: 100%;
}
.partner-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}
.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-review:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: var(--bg-card-hover);
}
.btn-review svg {
    width: 16px;
    height: 16px;
}
.btn-partner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: var(--accent-blue);
    color: var(--text-white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(59, 159, 231, 0.3);
}
.btn-partner:hover {
    background: var(--accent-blue-hover);
    transform: translateY(-1px);
    color: var(--text-white);
}
.btn-partner svg {
    width: 16px;
    height: 16px;
}
@media (max-width: 767px) {
    .partner-card {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        border-left: none;
        border-top: 3px solid var(--accent-primary);
        overflow: hidden;
    }
    .partner-card-logo:not(.partner-card-logo--inline) {
        display: none;
    }
    .partner-card-logo--inline {
        display: flex;
        width: 72px;
        height: 44px;
        border-radius: 8px;
        flex-shrink: 0;
    }
    .partner-card-info {
        gap: 0;
    }
    .partner-card-header {
        display: grid;
        grid-template-columns: 72px 1fr auto;
        align-items: center;
        gap: 12px;
        padding: 14px 16px 12px;
        background: var(--bg-card);
    }
    .partner-card-header::before {
        display: none;
    }
    .partner-card-logo--inline {
        width: 72px;
        height: 44px;
        border-radius: 8px;
        flex-shrink: 0;
    }
    .partner-card-name {
        font-size: 17px;
        line-height: 1.2;
    }
    .partner-card-rating {
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
        background: rgba(245,166,35,.1);
        border-radius: 8px;
        padding: 4px 8px;
        text-align: right;
    }
    .partner-card-rating .star {
        font-size: 13px;
    }
    .partner-card-rating .score {
        font-size: 16px;
        font-weight: 800;
        line-height: 1;
    }
    .partner-card-rating .max {
        font-size: 10px;
        line-height: 1;
    }
    .partner-card-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0 16px;
        background: var(--bg-card);
        border-top: 1px solid var(--border-color);
    }
    .partner-card-meta-item {
        padding: 9px 0;
        gap: 5px;
        font-size: 12px;
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        align-items: flex-start;
    }
    .partner-card-meta-item:nth-child(odd) {
        padding-right: 12px;
        border-right: 1px solid var(--border-color);
    }
    .partner-card-meta-item:nth-child(even) {
        padding-left: 12px;
    }
    .partner-card-meta-item:nth-last-child(-n+2):not(.partner-card-meta-item--full) {
        border-bottom: none;
    }
    .partner-card-meta-item .meta-icon {
        display: none;
    }
    .partner-card-meta-item .meta-label {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        font-weight: 700;
        color: var(--text-muted);
        line-height: 1;
    }
    .partner-card-meta-item--full {
        grid-column: 1 / -1;
        padding: 9px 0;
        border-right: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border-bottom: none;
    }
    .partner-card-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        align-items: stretch;
        border-top: 1px solid var(--border-color);
    }
    .btn-review,
    .btn-partner {
        border-radius: 0;
        padding: 13px 12px;
        font-size: 13px;
        justify-content: center;
        white-space: nowrap;
        border: none;
        box-shadow: none;
    }
    .btn-review {
        background: var(--bg-primary);
        color: var(--text-secondary);
        border-right: 1px solid var(--border-color);
    }
    .btn-review:hover {
        background: var(--bg-card-hover);
        color: var(--accent-primary);
    }
    .btn-partner {
        background: var(--accent-blue);
        color: #fff;
        border-radius: 0 0 var(--radius) 0;
    }
    .btn-review {
        border-radius: 0 0 0 var(--radius);
    }
}
.review-hero {
    background: var(--bg-secondary);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}
.review-hero-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
    align-items: start;
}
.review-hero-logo {
    width: 120px;
    height: 80px;
    background: var(--partner-logo-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-hero-logo--black-bg {
    --partner-logo-bg: #111111;
}
.review-hero-logo--white-bg {
    --partner-logo-bg: #ffffff;
}
.review-hero-logo img,
.review-hero-logo .review-hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 12px;
}
.review-hero-logo--cover img,
.review-hero-logo--cover .review-hero-logo-img {
    object-fit: cover;
}
.review-hero-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.review-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}
@media (max-width: 767px) {
    .review-hero-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .review-hero-logo {
        width: 100%;
        height: 80px;
    }
    .review-hero-actions {
        align-items: center;
    }
}
.review-info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.review-info-table tr {
    border-bottom: 1px solid var(--border-color);
}
.review-info-table tr:last-child {
    border-bottom: none;
}
.review-info-table td {
    padding: 14px 20px;
    font-size: 14px;
    vertical-align: top;
}
.review-info-table td:first-child {
    width: 200px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.review-info-table td:last-child {
    color: var(--text-secondary);
}
.review-info-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
    flex-shrink: 0;
}
.review-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    background: transparent;
    box-shadow: none;
}
.review-info-grid-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.review-info-grid-item .review-info-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}
.review-info-grid-item .review-info-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.review-info-grid-item .review-info-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.review-info-grid-item .review-info-value {
    font-size: 14px;
    color: var(--text-primary);
    word-break: break-word;
}
.page-toc {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: var(--shadow-sm);
}
.page-toc-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin: 0 0 10px 0;
}
.page-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 6px 18px;
}
.page-toc-list li {
    margin: 0;
    padding: 0;
    position: relative;
}
.page-toc-list a {
    display: inline-block;
    padding: 4px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px dashed transparent;
    transition: color 0.2s, border-color 0.2s;
}
.page-toc-list a:hover {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}
.page-shell {
    margin-bottom: 24px;
}
.page-shell .page-main {
    min-width: 0;
}
.page-body-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}
.page-shell .page-main > .page-body-row {
    margin-top: 32px;
}
.page-primary {
    min-width: 0;
}
.page-shell .page-primary > section .container,
.page-shell .page-primary > section > .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}
.page-shell .page-main > .hero-section,
.page-shell .page-main > .review-hero {
    padding-top: 16px;
    padding-bottom: 24px;
}
.page-shell .page-primary > section {
    padding-top: 0;
    padding-bottom: 24px;
}
.page-body-row .page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
}
@media (max-width: 999px) {
    .page-body-row {
        grid-template-columns: 1fr;
    }
    .page-body-row .page-sidebar {
        position: static;
    }
}
.review-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}
@media (max-width: 999px) {
    .review-layout {
        grid-template-columns: 1fr;
    }
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sidebar-block {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}
.sidebar-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.sidebar-post {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
a.sidebar-post:hover .sidebar-post-text h4 {
    color: var(--accent-primary);
}
.sidebar-post:last-child {
    border-bottom: none;
}
.sidebar-post-thumb {
    width: 70px;
    height: 50px;
    border-radius: 6px;
    background: var(--border-color);
    flex-shrink: 0;
    overflow: hidden;
}
.sidebar-post-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.sidebar-post-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.4;
}
.sidebar-post-text span {
    font-size: 12px;
    color: var(--text-muted);
}
.sidebar-partners h3 {
    margin-bottom: 12px;
}
.sidebar-partner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.sidebar-partner:last-of-type {
    border-bottom: none;
}
.sidebar-partner:hover .sidebar-partner-name {
    color: var(--accent-primary);
}
.sidebar-partner-logo {
    width: 56px;
    height: 40px;
    border-radius: 8px;
    background: var(--partner-logo-bg, var(--bg-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}
.sidebar-partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.sidebar-partner-logo--black-bg {
    --partner-logo-bg: #111111;
    border-color: #111111;
}
.sidebar-partner-logo--white-bg {
    --partner-logo-bg: #ffffff;
}
.sidebar-partner-logo--cover img {
    object-fit: cover;
}
.sidebar-partner-initials {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}
.sidebar-partner-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}
.sidebar-partner-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.2s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sidebar-partner-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
}
.sidebar-partner-rating .star {
    color: var(--partner-rating);
}
.sidebar-partner-rating .score {
    color: var(--text-primary);
    font-weight: 600;
}
.sidebar-partners-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
}
.sidebar-partners-more:hover {
    text-decoration: underline;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: var(--accent-primary);
}
.breadcrumb-sep {
    color: var(--text-muted);
}
.comparison-table {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}
thead {
    background: var(--bg-header);
}
thead th {
    color: var(--text-white);
}
th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
}
tbody tr {
    transition: background 0.2s ease;
}
tbody tr:hover {
    background: var(--bg-card-hover);
}
tbody tr:last-child td {
    border-bottom: none;
}
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: calc(var(--prose-flow) * 0.65);
    overflow: hidden;
    background: var(--bg-card);
}
.faq-list .faq-item:last-child {
    margin-bottom: 0;
}
.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: var(--bg-card);
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
    margin: 0;
    font-family: var(--font-primary);
}
.faq-question:hover {
    background: var(--bg-card-hover);
    color: var(--accent-primary);
}
.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-question.active::after {
    content: '\2212';
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-content {
    padding: 16px 18px;
    background: var(--bg-primary);
    color: var(--text-secondary);
}
.faq-answer-content p {
    margin-block: var(--prose-flow);
    margin-inline: 0;
}
.faq-answer-content p:first-child {
    margin-block-start: 0;
}
.faq-answer-content p:last-child {
    margin-block-end: 0;
}
.image-prompt {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(147, 51, 234, 0.08));
    border: 1px dashed var(--accent-primary);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin: calc(var(--prose-flow) * 0.8) 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}
.image-prompt::before {
    content: "";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='18' height='18' rx='2'/><circle cx='8.5' cy='8.5' r='1.5'/><path d='M21 15l-5-5L5 21'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 2px;
}
.image-prompt strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.article-illustration {
    margin: calc(var(--prose-flow) * 0.85) 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-card);
}
.article-illustration img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.text-content .article-illustration {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.callout {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-primary);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: calc(var(--prose-flow) * 0.9) 0;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}
.callout--warning {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.06);
}
.callout--success {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.06);
}
.callout strong {
    color: var(--text-primary);
}
.callout p {
    margin: 0;
}
.callout p + p {
    margin-top: 8px;
}
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: calc(var(--prose-flow) * 0.9) 0;
}
.pros-cons-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
}
.pros-cons-card h4 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pros-cons-card--pros h4 { color: #059669; }
.pros-cons-card--cons h4 { color: #dc2626; }
.pros-cons-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-secondary);
    font-size: 14px;
}
.pros-cons-card li {
    margin-bottom: 6px;
}
.pros-cons-card li:last-child {
    margin-bottom: 0;
}
@media (max-width: 720px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
}
.key-takeaways {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: calc(var(--prose-flow) * 0.9) 0;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--accent-primary);
}
.key-takeaways h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin: 0 0 10px 0;
}
.key-takeaways ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}
.key-takeaways li {
    margin-bottom: 6px;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}
.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.step-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: calc(var(--prose-flow) * 0.9) 0;
}
.step-list > li {
    counter-increment: step;
    position: relative;
    padding: 14px 16px 14px 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}
.step-list > li::before {
    content: counter(step);
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.step-list > li strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}
.section-404 {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.error-404-wrap {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.error-404-code {
    font-size: clamp(80px, 18vw, 180px);
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
    opacity: 0.25;
    margin: 0;
    letter-spacing: -4px;
}
.error-404-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}
.error-404-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}
.error-404-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}
@media (max-width: 480px) {
    .error-404-actions {
        flex-direction: column;
    }
    .error-404-actions .btn-cta {
        justify-content: center;
    }
}
footer {
    background-color: var(--bg-footer);
    color: var(--text-white);
    padding: 50px 0 24px;
    border-top: 3px solid var(--accent-primary);
}
.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column h3 {
    font-size: 15px;
    margin-bottom: 14px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-column ul {
    list-style: none;
}
.footer-column li {
    margin-bottom: 8px;
}
.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}
.footer-column a:hover {
    color: var(--accent-light);
    transform: translateX(2px);
}
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 28px;
    text-align: center;
}
.footer-copyright-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-copyright-brand {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, #86efac 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-copyright-year {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}
.footer-copyright-detail {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.65;
    text-align: left;
}
.footer-copyright-detail strong {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}
.footer-copyright-meta {
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
}
.footer-copyright-age {
    display: inline-block;
    margin-right: 8px;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: #fff;
    background: rgba(34, 197, 94, 0.35);
    border: 1px solid rgba(34, 197, 94, 0.5);
    vertical-align: middle;
}
@media (max-width: 999px) {
    .hero-content h1 {
        font-size: 30px;
    }
    .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 599px) {
    .hero-section {
        padding: 32px 0 28px;
    }
    .hero-content {
        text-align: left;
    }
    .hero-content h1 {
        font-size: 22px;
    }
    .hero-lead {
        font-size: 15px;
    }
    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .hero-feature {
        padding: 9px 11px;
        gap: 8px;
    }
    .hero-feature-icon {
        font-size: 20px;
    }
    .hero-feature strong {
        font-size: 12px;
    }
    .hero-feature span {
        font-size: 10px;
    }
    .hero-actions {
        flex-wrap: nowrap;
        gap: 8px;
    }
    .btn-cta {
        flex: 1;
        justify-content: center;
        padding: 13px 16px;
        font-size: 14px;
    }
    .section {
        padding: 22px 0;
    }
    .section-title h1,
    .section-title h2 {
        font-size: 22px;
    }
    .footer-wrapper {
        grid-template-columns: 1fr;
    }
    .review-info-table td:first-child {
        width: 140px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .breadcrumb {
        font-size: 11px;
    }
}
.fab-stack {
    position: fixed;
    bottom: 28px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 900;
}
.fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.18);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    white-space: nowrap;
    padding: 0 18px;
    -webkit-tap-highlight-color: transparent;
}
.fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.24);
}
.fab:active {
    transform: translateY(0);
}
.fab--tg {
    background: #29a9eb;
    color: #fff;
    padding: 0 18px 0 14px;
}
.fab--tg:hover {
    background: #1d96d8;
    color: #fff;
}
.fab--top {
    width: 48px;
    padding: 0;
    border-radius: 50%;
    background: var(--bg-header);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .2s ease, box-shadow .2s ease;
}
.fab--top.is-visible {
    opacity: 1;
    pointer-events: auto;
}
@media (max-width: 600px) {
    .fab-stack {
        bottom: 18px;
        right: 16px;
        gap: 8px;
    }
    .fab__label {
        display: none;
    }
    .fab--tg {
        width: 48px;
        padding: 0;
        border-radius: 50%;
    }
}
.author-avatar-initials {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary, #1a6fc4) 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 1px;
}
.author-hero {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 32px 0 12px;
}
.author-hero-avatar .author-avatar-initials {
    width: 96px;
    height: 96px;
    font-size: 30px;
}
.author-photo {
    display: block;
    width: 120px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
}
.author-photo--compact {
    width: 72px;
    border-width: 1px;
    border-color: var(--border-color);
    box-shadow: none;
}
.author-hero-content {
    flex: 1;
}
.author-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #000;
    margin-top: 14px;
}
.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
}
.author-box-body {
    flex: 1;
}
.author-box-name {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.author-box-name a {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
}
.author-box-name a:hover {
    color: var(--accent-primary);
}
.author-box-role {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-secondary);
    border-radius: 4px;
    padding: 2px 8px;
}
.author-box-bio {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 600px) {
    .author-hero {
        flex-direction: column;
        gap: 16px;
    }
    .author-box {
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }
    .author-hero-meta {
        flex-direction: column;
        gap: 8px;
    }
}
