.guide-wrap {
    max-width: 72rem;
    margin: 0 auto;
}

.guide-kicker {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #00aeef;
}

.guide-hero {
    padding: 4rem 0 3rem;
    background-color: rgba(232, 246, 252, 0.45);
}

.guide-hero-title {
    margin: 0 0 1rem;
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.045em;
    color: #004a99;
    line-height: 1.15;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-break: strict;
}

.guide-hero-lead {
    margin: 0 auto 1.5rem;
    max-width: 40rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #5b6b7c;
    word-break: keep-all;
    overflow-wrap: normal;
}

.guide-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.85rem 1.45rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.guide-btn:hover {
    transform: translateY(-1px);
}

.guide-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #004a99 0%, #0077cc 55%, #00aeef 100%);
    box-shadow: 0 12px 28px rgba(0, 119, 204, 0.25);
}

.guide-btn--ghost {
    color: #004a99;
    border: 2px solid rgba(0, 74, 153, 0.18);
    background: #fff;
}

.guide-note {
    margin: 1.5rem auto 0;
    max-width: 40rem;
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
    background: #fff;
    border: 1px solid #e2edf5;
    color: #64748b;
    font-size: 0.8125rem;
    line-height: 1.6;
}

.guide-sticky-nav {
    position: sticky;
    top: var(--site-header-height, 4rem);
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2edf5;
    box-shadow: 0 4px 24px rgba(0, 74, 153, 0.06);
}

.guide-sticky-nav a {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.guide-sticky-nav a:hover,
.guide-sticky-nav a.is-active {
    color: #004a99;
    border-bottom-color: #00aeef;
}

.guide-section {
    padding: 4rem 0;
}

.guide-section--alt {
    background: rgba(232, 246, 252, 0.4);
}

.guide-section[id] {
    scroll-margin-top: var(--section-scroll-offset, 12rem);
}

.guide-label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00aeef;
}

.guide-h2 {
    margin: 0 0 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #004a99;
    line-height: 1.25;
}

.guide-lead {
    margin: 0 0 1.75rem;
    max-width: 42rem;
    color: #5b6b7c;
    line-height: 1.75;
}

.guide-lead--nowrap {
    max-width: none;
    word-break: keep-all;
    overflow-wrap: normal;
}

.guide-steps {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .guide-hero-title {
        font-size: 3rem;
    }

    .guide-h2 {
        font-size: 2rem;
    }

    .guide-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.guide-step,
.guide-card,
.guide-check,
.guide-term {
    background: #fff;
    border: 1px solid #e2edf5;
    border-radius: 1.25rem;
    padding: 1.35rem 1.4rem;
}

.guide-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.85rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #004a99, #00aeef);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 800;
}

.guide-step h3,
.guide-card h3,
.guide-check h3,
.guide-term h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #004a99;
}

.guide-step p,
.guide-card p,
.guide-check p,
.guide-term p,
.guide-path p {
    margin: 0;
    color: #5b6b7c;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.guide-grid-2,
.guide-grid-3 {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .guide-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.guide-check {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.guide-check-mark {
    flex-shrink: 0;
    width: 1.65rem;
    height: 1.65rem;
    margin-top: 0.1rem;
    border-radius: 9999px;
    background: #e8f6fc;
    color: #0077cc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
}

.guide-path {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .guide-path {
        grid-template-columns: repeat(2, 1fr);
    }
}

.guide-path article {
    background: #fff;
    border: 1px solid #e2edf5;
    border-radius: 1.25rem;
    padding: 1.35rem 1.4rem;
}

.guide-path h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #004a99;
}

.guide-badge {
    display: inline-block;
    margin-bottom: 0.55rem;
    padding: 0.2rem 0.55rem;
    border-radius: 9999px;
    background: #e8f6fc;
    color: #0077cc;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.guide-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.guide-timeline::before {
    content: '';
    position: absolute;
    left: 0.3rem;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 2px;
    background: linear-gradient(180deg, #00aeef, #004a99);
}

.guide-timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.guide-timeline-item:last-child {
    padding-bottom: 0;
}

.guide-timeline-item::before {
    content: '';
    position: absolute;
    left: -1.325rem;
    top: 0.4rem;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #00aeef;
}

.guide-timeline-item.is-highlight::before {
    background: #00aeef;
}

.guide-timeline-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: #00aeef;
    margin-bottom: 0.2rem;
}

.guide-timeline-item h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 800;
    color: #004a99;
}

.guide-timeline-item p {
    margin: 0;
    color: #5b6b7c;
    font-size: 0.9rem;
    line-height: 1.65;
}

.guide-cta-band {
    background: linear-gradient(135deg, #004a99 0%, #0077cc 55%, #00aeef 100%);
    color: #fff;
    padding: 3.5rem 0;
}

.guide-cta-band h2 {
    margin: 0 0 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
}

.guide-cta-band p {
    margin: 0 auto 1.5rem;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.guide-cta-band .guide-btn--primary {
    background: #fff;
    color: #004a99;
    box-shadow: none;
}

.guide-cta-band .guide-btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
}

.guide-case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    margin-bottom: 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #00aeef;
}

.guide-logo-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .guide-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .guide-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.guide-logo-grid .guide-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.guide-card--dark {
    background: #004a99;
}

.guide-card--dark h3,
.guide-card--dark p {
    color: #fff;
}

.guide-press-logo {
    height: 5.25rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 0.85rem;
}

.guide-press-ai {
    margin: 1.5rem 0 0;
    text-align: center;
}

.guide-en {
    font-family: Pretendard, "Noto Sans KR", system-ui, sans-serif;
}

.guide-en .guide-hero-title {
    letter-spacing: -0.03em;
}

@media (max-width: 640px) {
    .guide-hero {
        padding: 3rem 0 2.25rem;
    }
}
