.guide-page {
    background: #f5f5f5;
    min-height: 100vh;
}

.guide-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Breadcrumb ── */
.guide-nav {
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.guide-nav a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.guide-nav a:hover {
    text-decoration: underline;
}

.guide-nav span {
    color: #94a3b8;
}

.guide-nav .current {
    color: #333333;
    font-weight: 600;
}

/* ── Hero ── */
.guide-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 50%, #2563eb 100%);
    border-radius: 24px;
    padding: 60px 48px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 36px;
}

.guide-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.guide-hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(129, 140, 248, 0.08);
}

.guide-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.guide-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.guide-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.guide-hero p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.7;
}

/* ── Stats Bar ── */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.stat-box {
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.stat-box .sval {
    font-size: 28px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 2px;
}

.stat-box .slbl {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ── Section Tabs ── */
.section-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 6px;
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 14px;
}

.section-tab {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    color: #333333;
}

.section-tab.active {
    background: #2563eb;
    color: white;
}

.section-tab:hover:not(.active) {
    background: #f0f0f0;
    color: #334155;
}

/* ── Guide Cards ── */
.guide-sections {
    margin-bottom: 40px;
}

.guide-card {
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 20px;
    display: none;
}

.guide-card.active {
    display: block;
}

.gc-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.gc-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.gc-title h2 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.gc-title p {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.gc-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 12px;
    margin-top: 4px;
}

.gc-list {
    list-style: none;
    padding: 0;
}

.gc-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.gc-list li:last-child {
    border-bottom: none;
}

.gc-list .li-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.gc-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 20px;
}

.gc-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gc-col h4 i {
    color: #2563eb;
}

.gc-col ul {
    list-style: none;
    padding: 0;
}

.gc-col ul li {
    padding: 6px 0;
    font-size: 13px;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gc-col ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #a5b4fc;
    flex-shrink: 0;
}

/* ── Featured Tips ── */
.tips-section {
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
}

.tips-section h2 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tips-section h2 i {
    color: #f59e0b;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tip-card {
    padding: 20px;
    background: #f5f5f5;
    border: 1px solid #d0d0d0;
    border-radius: 14px;
    transition: all 0.2s;
}

.tip-card:hover {
    border-color: #a5b4fc;
    background: #f0f0ff;
}

.tip-card .tip-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tip-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.tip-card p {
    font-size: 13px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* ── CTA ── */
.guide-cta {
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    border-radius: 20px;
    padding: 52px 40px;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.guide-cta h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.guide-cta p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 28px;
}

.guide-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.guide-cta-btns a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.cta-white {
    background: white;
    color: #2563eb;
}

.cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #2563eb;
}

.cta-outline-w {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.cta-outline-w:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .gc-columns {
        grid-template-columns: 1fr;
    }

    .guide-hero {
        padding: 40px 28px;
    }

    .guide-hero h1 {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .section-tabs {
        gap: 4px;
    }

    .section-tab {
        padding: 8px 14px;
        font-size: 12px;
    }
}

