/* ============================================
   ROOT — Elegan Blood & Gold Theme
   ============================================ */
:root {
    --blood: #7a1a1a;
    --blood-light: #a52a2a;
    --blood-dark: #4a0e0e;
    --blood-glow: rgba(180, 30, 30, 0.3);
    --blood-glow-strong: rgba(180, 30, 30, 0.5);
    --gold: #c9a84c;
    --gold-dim: #a88b3a;
    --gold-glow: rgba(201, 168, 76, 0.2);
    --dark: #0d0808;
    --dark-card: rgba(18, 10, 10, 0.92);
    --dark-glass: rgba(13, 8, 8, 0.7);
    --text-primary: #ece3e3;
    --text-secondary: #bfa8a8;
    --text-dim: #8a7070;
    --radius: 10px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: var(--font);
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--blood); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================
   UTILITY
   ============================================ */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.12);
    padding: 3px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
    background: rgba(201, 168, 76, 0.03);
}

.section-title {
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.section-title .highlight {
    color: var(--gold);
}

.section-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--blood);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 20px var(--blood-glow);
}

.btn-primary:hover {
    background: var(--blood-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--blood-glow-strong);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--gold);
}

.btn-sm {
    padding: 5px 14px;
    font-size: 0.7rem;
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(13, 8, 8, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(122, 26, 26, 0.1);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo span {
    color: var(--blood-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links .btn-nav {
    padding: 5px 16px;
    background: var(--blood);
    border-radius: 50px;
    color: #fff !important;
    font-weight: 500;
    font-size: 0.7rem;
}
.nav-links .btn-nav::after { display: none; }
.nav-links .btn-nav:hover {
    background: var(--blood-light);
    box-shadow: 0 4px 20px var(--blood-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 4px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--dark-card);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        border-left: 1px solid rgba(122, 26, 26, 0.1);
    }
    .nav-links.open { right: 0; }
    .hamburger { display: flex; }
}

/* ============================================
   HERO — WITH BACKGROUND IMAGE
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 50px;
    background-color: var(--dark);
    background-image: url('/uploads/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 8, 8, 0.25) 0%, var(--dark) 92%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content .badge {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.12);
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
    background: rgba(201, 168, 76, 0.03);
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.hero-content h1 .highlight {
    color: var(--gold);
}

.hero-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 460px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.hero-content p strong {
    color: var(--gold);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.hero-note {
    font-size: 0.75rem;
    color: var(--text-dim);
}
.hero-note a {
    color: var(--gold);
    text-decoration: none;
}
.hero-note a:hover {
    text-decoration: underline;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.hero-stats .stat h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}
.hero-stats .stat p {
    font-size: 0.6rem;
    color: var(--text-dim);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-visual .chart-container {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    position: relative;
}

.hero-chart {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(122, 26, 26, 0.04), transparent 70%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-chart canvas {
    width: 100%;
    height: 100%;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}
.hero-glow.g1 {
    width: 50%;
    height: 50%;
    background: var(--blood);
    top: 25%;
    left: 25%;
}
.hero-glow.g2 {
    width: 30%;
    height: 30%;
    background: var(--gold);
    bottom: 15%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes pulseGlow {
    0% { opacity: 0.08; transform: scale(1); }
    100% { opacity: 0.2; transform: scale(1.05); }
}

.scroll-indicator {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-dim);
    font-size: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounceDown 2.5s ease-in-out infinite;
    z-index: 2;
}
.scroll-indicator .line {
    width: 1px;
    height: 25px;
    background: linear-gradient(to bottom, var(--blood-light), transparent);
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
    .hero-visual .chart-container { max-width: 260px; margin: 0 auto; }
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--dark), rgba(122, 26, 26, 0.01), var(--dark));
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 28px;
}

.story-image {
    border-radius: var(--radius);
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(122, 26, 26, 0.04), transparent 70%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(122, 26, 26, 0.06);
}

.story-image .placeholder {
    font-size: 4rem;
    opacity: 0.03;
    font-weight: 700;
    letter-spacing: -5px;
    color: var(--blood-light);
}

.story-text p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.8;
}

.story-text .story-highlight {
    background: rgba(122, 26, 26, 0.03);
    border-left: 3px solid var(--gold);
    padding: 14px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 16px 0;
}
.story-text .story-highlight p {
    color: var(--text-primary);
    font-style: italic;
    font-size: 0.95rem;
    margin: 0;
}

.story-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}
.story-values .value-item {
    background: var(--dark-card);
    padding: 12px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.01);
    transition: var(--transition);
}
.story-values .value-item:hover {
    border-color: rgba(122, 26, 26, 0.1);
    transform: translateY(-2px);
}
.story-values .value-item h4 {
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 2px;
}
.story-values .value-item p {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin: 0;
}

@media (max-width: 768px) {
    .story-grid { grid-template-columns: 1fr; }
    .story-values { grid-template-columns: 1fr; }
}

/* ============================================
   BLOG
   ============================================ */
.blog-section {
    padding: 60px 0;
    background: var(--dark);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 28px;
}

.blog-tabs {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.blog-tabs .tab-btn {
    padding: 5px 16px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.7rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font);
}
.blog-tabs .tab-btn:hover {
    border-color: rgba(201, 168, 76, 0.15);
    color: var(--text-primary);
}
.blog-tabs .tab-btn.active {
    background: var(--blood);
    color: #fff;
    border-color: var(--blood);
}

.blog-search {
    flex: 1;
    min-width: 180px;
    max-width: 280px;
    margin-left: auto;
}
.blog-search .search-wrapper {
    display: flex;
    background: var(--dark-card);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: var(--transition);
    overflow: hidden;
}
.blog-search .search-wrapper:focus-within {
    border-color: rgba(201, 168, 76, 0.12);
}
.blog-search .search-wrapper input {
    flex: 1;
    padding: 6px 14px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.75rem;
    outline: none;
}
.blog-search .search-wrapper input::placeholder {
    color: var(--text-dim);
}
.blog-search .search-wrapper button {
    padding: 6px 14px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    transition: var(--transition);
}
.blog-search .search-wrapper button:hover {
    color: var(--gold);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.blog-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.01);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(122, 26, 26, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.blog-card .card-image {
    height: 130px;
    background: linear-gradient(135deg, var(--blood-dark), var(--blood));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}
.blog-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card .card-body { padding: 14px 16px; }
.blog-card .card-body .category {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 3px;
}
.blog-card .card-body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}
.blog-card .card-body h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}
.blog-card .card-body h3 a:hover { color: var(--gold); }
.blog-card .card-body p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .card-footer {
    padding: 8px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.01);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    color: var(--text-dim);
}
.blog-card .card-footer .read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.7rem;
}
.blog-card .card-footer .read-more:hover { color: #fff; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--dark), rgba(122, 26, 26, 0.01), var(--dark));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.testimonial-card {
    background: var(--dark-card);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.01);
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: rgba(122, 26, 26, 0.06);
}
.testimonial-card .stars {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.testimonial-card .author .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--blood);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    color: #fff;
}
.testimonial-card .author .info h4 {
    font-size: 0.8rem;
    font-weight: 600;
}
.testimonial-card .author .info p {
    font-size: 0.65rem;
    color: var(--text-dim);
    margin: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: 60px 0;
    background: var(--dark);
}

.faq-list {
    max-width: 680px;
    margin: 28px auto 0;
}

.faq-item {
    background: var(--dark-card);
    border-radius: var(--radius);
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.01);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(122, 26, 26, 0.06); }

.faq-item .faq-question {
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 0.85rem;
    background: none;
    border: none;
    width: 100%;
    color: var(--text-primary);
    text-align: left;
    font-family: var(--font);
    transition: var(--transition);
}
.faq-item .faq-question:hover { color: var(--gold); }
.faq-item .faq-question .icon {
    font-size: 0.7rem;
    color: var(--gold);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 10px;
}
.faq-item.active .faq-question .icon { transform: rotate(180deg); }

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 18px;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 18px 14px;
}
.faq-item .faq-answer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   JOIN / CTA
   ============================================ */
.join-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--blood-dark), var(--dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}
.join-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(122, 26, 26, 0.12), transparent 60%);
    pointer-events: none;
}
.join-section .container { position: relative; z-index: 2; }

.join-section h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 10px;
}
.join-section h2 .highlight { color: var(--gold); }

.join-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 460px;
    margin: 0 auto 20px;
}
.join-section .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.join-section .btn-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.1);
}
.join-section .btn-wa:hover {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark-card);
    border-top: 1px solid rgba(255, 255, 255, 0.01);
    padding: 40px 0 20px;
}
footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 28px;
}
footer .brand h3 {
    font-size: 1rem;
    font-weight: 700;
}
footer .brand h3 span { color: var(--blood-light); }
footer .brand p {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin: 6px 0;
    max-width: 260px;
}
footer .brand .tagline {
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

footer h4 {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin-bottom: 10px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 5px; }
footer ul a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.75rem;
    transition: var(--transition);
}
footer ul a:hover { color: var(--gold); }

footer .footer-bottom {
    grid-column: 1 / -1;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.01);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.65rem;
    color: var(--text-dim);
}
footer .footer-bottom .disclaimer {
    font-size: 0.55rem;
    max-width: 600px;
    opacity: 0.4;
}

@media (max-width: 768px) {
    footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    footer .container { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    min-height: 25vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background: radial-gradient(ellipse at 30% 40%, rgba(122, 26, 26, 0.04), transparent 60%), var(--dark);
}

/* ============================================
   POST CONTENT
   ============================================ */
.post-content {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.9;
}
.post-content h2 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-top: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}
.post-content h3 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}
.post-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 12px 18px;
    margin: 16px 0;
    background: rgba(201, 168, 76, 0.02);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}
.post-content ul, .post-content ol {
    padding-left: 18px;
    margin: 10px 0;
}
.post-content li { margin-bottom: 4px; }
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.85rem;
}
.post-content table th,
.post-content table td {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: left;
}
.post-content table th {
    background: rgba(122, 26, 26, 0.06);
    color: var(--gold);
    font-weight: 600;
}

/* ============================================
   MARKET TABS
   ============================================ */
.market-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.market-tabs .tab-btn {
    padding: 6px 20px;
    background: var(--dark-card);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}
.market-tabs .tab-btn:hover {
    border-color: rgba(201, 168, 76, 0.12);
    color: var(--text-primary);
}
.market-tabs .tab-btn.active {
    background: var(--blood);
    color: #fff;
    border-color: var(--blood);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeTab 0.3s ease; }

@keyframes fadeTab {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SEARCH RESULT
   ============================================ */
.result-item {
    background: var(--dark-card);
    padding: 14px 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.01);
    transition: var(--transition);
}
.result-item:hover {
    border-color: rgba(122, 26, 26, 0.06);
}
.result-item .result-category {
    font-size: 0.55rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.result-item h3 {
    font-size: 0.95rem;
    margin: 3px 0;
}
.result-item h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}
.result-item h3 a:hover { color: var(--gold); }
.result-item p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}
.result-item .result-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    transition: var(--transition);
}
.result-item .result-link:hover { color: #fff; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { width: 100%; justify-content: center; }
    .blog-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-toolbar { flex-direction: column; align-items: stretch; }
    .blog-search { max-width: 100%; margin-left: 0; }
}










/* ============================================
   HERO CONTENT
   ============================================ */
.hero-content h1 {
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.hero-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 460px;
    margin-bottom: 12px;
    line-height: 1.8;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
    font-size: clamp(1.3rem, 2.5vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.15;
    margin-bottom: 10px;
}

/* ============================================
   BLOG CARD
   ============================================ */
.blog-card .card-body h3 {
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-card .card-body p {
    font-size: 0.75rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item .faq-question {
    font-size: 0.8rem;
}

.faq-item .faq-answer p {
    font-size: 0.8rem;
}

/* ============================================
   POST CONTENT
   ============================================ */
.post-content {
    font-size: 0.85rem;
}

.post-content h2 {
    font-size: 1.2rem;
}

.post-content h3 {
    font-size: 1rem;
}

/* ============================================
   STORY IMAGE
   ============================================ */
.story-image {
    border-radius: var(--radius);
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(122, 26, 26, 0.04), transparent 70%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(122, 26, 26, 0.06);
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.02);
}

.story-image .placeholder {
    font-size: 4rem;
    opacity: 0.03;
    font-weight: 700;
    letter-spacing: -5px;
    color: var(--blood-light);
}