:root {
    --ink: #1d2733;
    --muted: #647184;
    --line: #dfe5ec;
    --surface: #f6f8fb;
    --accent: #c92f2f;
    --accent-dark: #9e2424;
    --navy: #142334;
    --gold: #f0b33e;
    --white: #ffffff;
}

body {
    color: var(--ink);
    background: var(--white);
}

.guide-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 140px 0 82px;
    background:
        linear-gradient(90deg, rgba(20, 35, 52, 0.94) 0%, rgba(20, 35, 52, 0.78) 54%, rgba(201, 47, 47, 0.34) 100%),
        url("assets/img/inner-banner/slider-1.avif") center/cover no-repeat;
}

.guide-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 7px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.guide-hero .container {
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffe1a6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-label i {
    font-size: 19px;
}

.guide-hero h1 {
    max-width: 840px;
    color: var(--white);
    font-size: 52px;
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 22px;
}

.guide-hero p {
    max-width: 720px;
    color: #edf3f7;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.guide-btn.primary {
    color: var(--white);
    background: var(--accent);
    border: 1px solid var(--accent);
}

.guide-btn.primary:hover {
    color: var(--white);
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.guide-btn.secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.48);
}

.guide-btn.secondary:hover {
    color: var(--navy);
    background: var(--white);
}

.trust-strip {
    background: var(--navy);
    color: #dce6ef;
    padding: 18px 0;
}

.trust-strip .row {
    row-gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.trust-item i {
    color: var(--gold);
    font-size: 21px;
}

.guide-section {
    padding: 84px 0;
}

.guide-section.alt {
    background: var(--surface);
}

.section-kicker {
    display: block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.guide-title {
    color: var(--navy);
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 14px;
}

.guide-lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    max-width: 840px;
    margin-bottom: 0;
}

.info-card {
    height: 100%;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(20, 35, 52, 0.06);
}

.info-card .icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--accent);
    background: #fff1f1;
    font-size: 25px;
    margin-bottom: 18px;
}

.info-card h3,
.step-card h3,
.cost-panel h3 {
    color: var(--navy);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 11px;
}

.info-card p,
.step-card p,
.cost-panel p,
.eligibility-list li,
.notice-box p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 0;
}

.model-grid {
    margin-top: 38px;
    row-gap: 24px;
}

.cost-panel {
    height: 100%;
    padding: 30px;
    border-left: 4px solid var(--accent);
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(20, 35, 52, 0.06);
}

.cost-list,
.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.cost-list li,
.eligibility-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 13px;
}

.cost-list li::before,
.eligibility-list li::before {
    content: "\ea41";
    font-family: "boxicons";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent);
    font-size: 20px;
}

.cost-note {
    margin-top: 20px;
    padding: 16px 18px;
    border: 1px solid #f3d4d4;
    border-radius: 6px;
    background: #fff7f7;
    color: #8d3d3d;
    font-size: 14px;
    line-height: 1.7;
}

.step-card {
    height: 100%;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
    font-weight: 800;
    margin-bottom: 18px;
}

.eligibility-wrap {
    padding: 34px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
}

.notice-box {
    padding: 28px;
    border-radius: 8px;
    background: var(--navy);
}

.notice-box h3 {
    color: var(--white);
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 12px;
}

.notice-box p {
    color: #dce6ef;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
    border-top: 1px solid var(--line);
}

.faq-item h3 {
    color: var(--navy);
    font-size: 19px;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 0;
}

.cta-band {
    padding: 46px;
    border-radius: 8px;
    background: linear-gradient(100deg, var(--navy), #233d58);
    color: var(--white);
}

.cta-band h2 {
    color: var(--white);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-band p {
    color: #dce6ef;
    line-height: 1.75;
    margin-bottom: 0;
}

.ad-safety-disclaimer {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .guide-hero {
        min-height: auto;
        padding: 128px 0 72px;
    }

    .guide-hero h1 {
        font-size: 38px;
    }

    .guide-title {
        font-size: 29px;
    }

    .guide-section {
        padding: 64px 0;
    }
}

@media (max-width: 576px) {
    .guide-hero h1 {
        font-size: 30px;
    }

    .guide-hero p {
        font-size: 16px;
    }

    .hero-actions,
    .guide-btn {
        width: 100%;
    }

    .info-card,
    .cost-panel,
    .eligibility-wrap,
    .notice-box,
    .cta-band {
        padding: 22px;
    }
}