.info-page {
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(241, 248, 255, 0.94), rgba(255, 255, 255, 0.96) 46%, rgba(239, 253, 244, 0.78)),
        #f8fbff;
    color: var(--text);
}

.info-status {
    border-bottom: 1px solid var(--line);
    background: rgba(248, 251, 255, 0.86);
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.info-status .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 42px;
    overflow: hidden;
}

.info-status-track {
    display: flex;
    align-items: center;
    gap: 22px;
    white-space: nowrap;
}

.info-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--emerald, #059669);
    box-shadow: 0 0 0 6px rgba(16, 163, 127, 0.1);
}

.info-shell {
    padding: 72px 0 32px;
}

.info-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 34px;
    align-items: center;
    padding-bottom: 44px;
}

.info-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #eff6ff;
    padding: 8px 14px;
    color: var(--blue-600, #2563eb);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.info-kicker span {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    background: var(--blue-600, #2563eb);
    color: #fff;
}

.info-hero h1 {
    margin: 22px 0 16px;
    max-width: 900px;
    font-size: clamp(42px, 6.2vw, 78px);
    line-height: 0.96;
    letter-spacing: 0;
}

.info-hero p {
    max-width: 740px;
    margin: 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.75;
}

.info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.info-primary,
.info-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 14px;
    padding: 0 20px;
    font-weight: 900;
    text-decoration: none;
}

.info-primary {
    border: 0;
    background: linear-gradient(135deg, var(--blue-600, #2563eb), var(--emerald, #059669));
    color: #fff;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.22);
}

.info-primary:hover {
    color: #fff;
    transform: translateY(-1px);
}

.info-secondary {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
}

.info-hero-panel,
.info-card,
.faq-item,
.info-cta-band {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.info-hero-panel {
    padding: 24px;
}

.info-panel-title {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 15px;
    font-weight: 950;
    text-transform: uppercase;
}

.info-metric-list {
    display: grid;
    gap: 12px;
}

.info-metric {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff, #f8fbff);
    padding: 14px;
}

.info-metric span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    background: #ecfeff;
    color: #0891b2;
    font-weight: 950;
}

.info-metric strong {
    display: block;
    color: var(--text);
    font-size: 16px;
}

.info-metric small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    line-height: 1.45;
}

.info-section {
    padding: 30px 0;
}

.info-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.info-section-head h2 {
    margin: 0;
    max-width: 800px;
    color: var(--text);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: 0;
}

.info-section-head p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.info-card {
    min-height: 220px;
    padding: 20px;
}

.info-card b {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    background: #eff6ff;
    color: var(--blue-600, #2563eb);
    font-size: 13px;
}

.info-card h3 {
    margin: 18px 0 10px;
    color: var(--text);
    font-size: 20px;
}

.info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.info-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.info-step {
    border: 1px dashed #bfdbfe;
    border-radius: 18px;
    background: #fff;
    padding: 18px;
}

.info-step span {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
    background: #fef3c7;
    color: #b45309;
    font-weight: 950;
}

.info-step h3 {
    margin: 14px 0 8px;
    font-size: 18px;
}

.info-step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.faq-item {
    padding: 22px;
}

.faq-item h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 19px;
}

.faq-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

.info-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin: 34px auto 24px;
    padding: 26px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 163, 127, 0.1)),
        #fff;
}

.container.info-cta-band {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.info-cta-band h2 {
    margin: 0 0 6px;
    font-size: clamp(26px, 3.2vw, 38px);
}

.info-cta-band p {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 1100px) {
    .info-hero,
    .info-card-grid,
    .info-flow,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .info-status .container,
    .info-section-head,
    .info-cta-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .info-status-track {
        gap: 14px;
        overflow-x: auto;
        max-width: 100%;
        padding-bottom: 4px;
    }

    .info-shell {
        padding-top: 42px;
    }

    .info-hero h1 {
        font-size: 42px;
    }

    .info-hero-panel,
    .info-card,
    .faq-item,
    .info-cta-band {
        border-radius: 18px;
    }
}
