.web-flow-page {
    --wf-navy: #123d84;
    --wf-deep: #071f42;
    --wf-blue: #2f67c8;
    --wf-accent: #4a97ff;
    --wf-red: #e82c0c;
    --wf-yellow: #ffdb28;
    --wf-text: #24364a;
    --wf-muted: #617287;
    --wf-line: #d9e3f1;
    --wf-soft: #f4f7fc;
    --wf-green: #18a957;
    --wf-green-deep: #0f8a45;
    --wf-shadow: 0 24px 52px rgba(9, 29, 67, 0.08);
    color: var(--wf-text);
    background: #fff;
}

.web-flow-page * {
    box-sizing: border-box;
}

.web-flow-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.web-flow-break-pc {
    display: block;
}

.web-flow-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #05152f 0%, #0d4f9e 48%, #4a97ff 100%);
}

.web-flow-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 24%),
        radial-gradient(circle at 84% 18%, rgba(74,151,255,0.30) 0%, rgba(255,255,255,0) 24%),
        radial-gradient(circle at 78% 82%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 22%);
    pointer-events: none;
}

.web-flow-hero__content {
    position: relative;
    z-index: 1;
    padding: 78px 0 68px;
    color: #fff;
}

.web-flow-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.web-flow-breadcrumb li {
    position: relative;
    padding-right: 14px;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.78);
}

.web-flow-breadcrumb li:not(:last-child)::after {
    content: "/";
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(255,255,255,0.35);
}

.web-flow-breadcrumb li:last-child {
    padding-right: 0;
}

.web-flow-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.web-flow-breadcrumb a:hover {
    color: #fff;
}

.web-flow-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.web-flow-hero__title {
    margin: 20px 0 0;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.web-flow-hero__lead {
    max-width: 860px;
    margin: 22px 0 0;
    font-size: 18px;
    line-height: 2;
    color: rgba(255,255,255,0.92);
}

.web-flow-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0;
    margin: 34px 0 0;
    list-style: none;
}

.web-flow-hero__chips li {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    backdrop-filter: blur(4px);
}

.web-flow-intro {
    padding: 72px 0 32px;
}

.web-flow-intro__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.web-flow-note-card {
    padding: 28px 28px 26px;
    border: 1px solid var(--wf-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--wf-shadow);
}

.web-flow-note-card--accent {
    background: linear-gradient(180deg, #fbfdff 0%, #f3f7fd 100%);
}

.web-flow-note-card__label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(18, 61, 132, 0.06);
    color: var(--wf-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.web-flow-note-card h2 {
    margin: 16px 0 0;
    font-size: 28px;
    line-height: 1.45;
    font-weight: 800;
    color: var(--wf-text);
}

.web-flow-check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

    .web-flow-check-list li {
        position: relative;
        padding-left: 34px;
        font-size: 15px;
        line-height: 1.9;
        color: var(--wf-text);
    }

        .web-flow-check-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.42em;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--wf-green) 0%, var(--wf-green-deep) 100%);
            box-shadow: 0 0 0 4px rgba(24, 169, 87, 0.12);
        }

        .web-flow-check-list li::after {
            content: "";
            position: absolute;
            left: 6px;
            top: 0.74em;
            width: 6px;
            height: 10px;
            border-right: 2px solid #fff;
            border-bottom: 2px solid #fff;
            transform: rotate(45deg);
        }

.web-flow-steps {
    padding: 28px 0 84px;
}

.web-flow-section-head {
    text-align: center;
}

.web-flow-section-head__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--wf-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.web-flow-section-head__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.45;
    font-weight: 800;
    color: var(--wf-text);
}

.web-flow-section-head__lead {
    max-width: 820px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 2;
    color: var(--wf-muted);
}

.web-flow-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
}

.web-flow-step-card {
    padding: 26px 22px 24px;
    border-radius: 28px;
    border: 1px solid var(--wf-line);
    background: #fff;
    box-shadow: var(--wf-shadow);
    text-align: center;
}

.web-flow-step-card__num {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(18, 61, 132, 0.06);
    color: var(--wf-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.web-flow-step-card__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 146px;
    margin-top: 16px;
}

.web-flow-step-card__icon img {
    max-width: 160px;
    height: auto;
}

.web-flow-step-card h3 {
    margin: 6px 0 0;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 800;
    color: var(--wf-text);
}

.web-flow-step-card p {
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.9;
    color: var(--wf-muted);
    text-align: left;
}

.web-flow-register {
    padding: 0 0 72px;
}

.web-flow-register__panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    padding: 34px 36px;
    border-radius: 30px;
    border: 1px solid var(--wf-line);
    background: linear-gradient(180deg, #fbfdff 0%, #f3f7fd 100%);
    box-shadow: var(--wf-shadow);
}

.web-flow-register__title {
    margin: 0;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.45;
    font-weight: 800;
    color: var(--wf-text);
}

.web-flow-register__lead {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 2;
    color: var(--wf-muted);
}

.web-flow-register__action {
    padding: 24px 24px 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--wf-line);
}

.web-flow-confirm {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 700;
    color: var(--wf-text);
    cursor: pointer;
}

.web-flow-confirm input {
    margin-top: 3px;
}

.web-flow-register__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.web-flow-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.web-flow-btn:hover {
    transform: translateY(-2px);
}

.web-flow-btn--primary {
    border: 0;
    background: linear-gradient(135deg, var(--wf-deep) 0%, var(--wf-blue) 55%, var(--wf-accent) 100%);
    color: #fff;
    box-shadow: 0 16px 28px rgba(18, 61, 132, 0.18);
}

.web-flow-btn--primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.web-flow-btn--ghost {
    border: 1px solid rgba(18, 61, 132, 0.14);
    background: #fff;
    color: var(--wf-text);
}

.web-flow-register__note {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.8;
    color: var(--wf-muted);
}

.web-flow-links {
    padding: 0 0 110px;
}

.web-flow-links__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.web-flow-link-card {
    display: block;
    padding: 28px 28px 26px;
    border-radius: 28px;
    border: 1px solid var(--wf-line);
    background: #fff;
    box-shadow: var(--wf-shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.web-flow-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 50px rgba(9, 29, 67, 0.12);
}

.web-flow-link-card__eyebrow {
    display: inline-block;
    color: var(--wf-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.web-flow-link-card h3 {
    margin: 12px 0 0;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 800;
    color: var(--wf-text);
}

.web-flow-link-card p {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.9;
    color: var(--wf-muted);
}

@media (max-width: 1080px) {
    .web-flow-steps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .web-flow-register__panel,
    .web-flow-intro__grid,
    .web-flow-links__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .web-flow-container {
        width: calc(100% - 24px);
    }

    .web-flow-break-pc {
        display: none;
    }

    .web-flow-hero__content {
        padding: 94px 0 72px;
    }

    .web-flow-hero__lead {
        font-size: 16px;
        line-height: 1.9;
    }

    .web-flow-hero__chips {
        gap: 10px;
    }

    .web-flow-hero__chips li {
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }

    .web-flow-intro {
        padding: 56px 0 24px;
    }

    .web-flow-steps,
    .web-flow-register {
        padding-bottom: 56px;
    }

    .web-flow-links {
        padding-bottom: 76px;
    }

    .web-flow-section-head__lead,
    .web-flow-register__lead,
    .web-flow-note-card h2,
    .web-flow-step-card h3,
    .web-flow-link-card h3 {
        line-height: 1.7;
    }

    .web-flow-steps__grid {
        grid-template-columns: 1fr;
    }

    .web-flow-note-card,
    .web-flow-step-card,
    .web-flow-register__panel,
    .web-flow-register__action,
    .web-flow-link-card {
        border-radius: 24px;
    }

    .web-flow-note-card,
    .web-flow-step-card,
    .web-flow-register__panel,
    .web-flow-link-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .web-flow-register__action {
        padding: 20px;
    }
}
