:root {
    --landing-purple: #4b18d1;
    --landing-purple-2: #6d3cff;
    --landing-ink: #21193a;
    --landing-line: rgba(90, 62, 162, 0.14);
}

.header__action-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 24px;
}

.header-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.header-action-btn i {
    font-size: 15px;
}

.header-action-btn.buy-btn {
    border: 2px solid rgba(139, 92, 255, 0.4);
    background: linear-gradient(135deg, #8b5cff 0%, #6f46e8 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(111, 70, 232, 0.35);
}

.header-action-btn.buy-btn:hover {
    background: linear-gradient(135deg, #9d73ff 0%, #7c57f0 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 70, 232, 0.5);
}

.header-action-btn.sell-btn {
    border: 2px solid rgba(255, 77, 143, 0.4);
    background: linear-gradient(135deg, #ff4d8f 0%, #e8437c 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(232, 67, 124, 0.35);
}

.header-action-btn.sell-btn:hover {
    background: linear-gradient(135deg, #ff6aa3 0%, #f05089 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 67, 124, 0.5);
}

.footer-hidden-section {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fast-match-page {
    background: linear-gradient(180deg, #ffffff 0%, #fbfaff 42%, #ffffff 100%);
    color: var(--landing-ink);
    font-family: "Jost", "Noto Sans TC", Arial, sans-serif;
}

.fm-container {
    width: min(1710px, calc(100% - 32px));
    margin: 0 auto;
}

.fm-hero {
    padding: 26px 0 18px;
}

.fm-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f7f3ff;
    box-shadow: 0 18px 44px rgba(57, 36, 112, 0.12);
}

.fm-hero-img {
    display: block;
    width: 100%;
    height: auto;
}

.fm-hero-action {
    position: absolute;
    left: 4.7%;
    bottom: 15%;
    z-index: 2;
}

.fm-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 230px;
    min-height: 65px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4817d3 0%, #3f10bc 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(63, 16, 188, 0.24);
}

.fm-cta:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.fm-seo-intro {
    padding: 34px 0 26px;
    text-align: center;
}

.fm-seo-card {
    max-width: 1260px;
    margin: 0 auto;
    padding: 36px 52px 34px;
    border: 1px solid rgba(109, 60, 255, 0.16);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
    box-shadow: 0 18px 46px rgba(57, 36, 112, 0.11);
}

.fm-seo-intro h1 {
    margin: 0 0 12px;
    color: var(--landing-purple);
    font-size: 42px;
    font-weight: 1000;
    line-height: 1.18;
    letter-spacing: 0;
}

.fm-summary-card strong{
    font-size: 18px;
}

.fm-seo-intro h2 {
    margin: 30px 0 18px;
    color: #231a38;
    font-size: 28px;
    font-weight: 950;
    line-height: 1.25;
    letter-spacing: 0;
}

.fm-seo-subtitle {
    padding: 4px 0 6px;
}

.fm-seo-intro p {
    max-width: 1040px;
    margin: 0 auto;
    color: #5d536b;
    font-size: 19px;
    font-weight: 850;
    line-height: 1.75;
}

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

.fm-section-title {
    margin: 0 0 26px;
    color: #231a38;
    font-size: 30px;
    font-weight: 950;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0;
}

.fm-section-title h1,
.fm-section-title h2,
.fm-section-title h3 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.fm-section-title span {
    position: relative;
    display: inline-block;
}

.fm-section-title span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: var(--landing-purple-2);
    transform: translateX(-50%);
}

.fm-benefits {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--landing-line);
    border-bottom: 1px solid var(--landing-line);
    background: #ffffff;
}

.fm-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 158px;
    padding: 22px 18px 20px;
    border-right: 1px solid var(--landing-line);
    text-align: center;
}

.fm-benefit:last-child {
    border-right: 0;
}

.fm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
    color: var(--landing-purple-2);
    font-size: 38px;
}

.fm-benefit h3,
.fm-step h3,
.fm-event-body h3 {
    letter-spacing: 0;
}

.fm-benefit h3 {
    margin: 0 0 9px;
    color: #231a38;
    font-size: 19px;
    font-weight: 1000;
    line-height: 1.25;
}

.fm-benefit p {
    margin: 0;
    color: #5f566d;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.55;
}

.fm-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 44px;
    max-width: 1220px;
    margin: 0 auto;
}

.fm-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 172px;
    padding: 4px 8px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
    box-shadow: none;
}

.fm-step::after {
    content: "\f061";
    position: absolute;
    top: 57px;
    right: -31px;
    color: #5f566d;
    font-family: "Font Awesome 6 Pro";
    font-size: 18px;
    font-weight: 400;
}

.fm-step:last-child::after {
    display: none;
}

.fm-num {
    position: absolute;
    top: 8px;
    left: calc(50% - 76px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--landing-purple);
    color: #ffffff;
    font-size: 16px;
    font-weight: 1000;
}

.fm-step .fm-icon {
    width: 78px;
    height: 78px;
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 62px;
}

.fm-step h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 1000;
}

.fm-step p {
    margin: 0;
    color: #5d536b;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.55;
}

.fm-form-area {
    padding: 34px 0 48px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%);
}

.fm-form-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
    gap: 22px;
    align-items: start;
}

.fm-form-card,
.fm-summary-card,
.fm-event-card,
.fm-faq details {
    border: 1px solid var(--landing-line);
    border-radius: 8px;
    background: #ffffff;
}

.fm-form-card,
.fm-summary-card {
    box-shadow: 0 14px 36px rgba(48, 31, 93, 0.08);
}

.fm-form-card {
    padding: 26px;
}

.fm-summary-card {
    position: sticky;
    top: 112px;
    padding: 24px;
}

.fm-form-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: #211936;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: 0;
}

.fm-form-title i {
    color: var(--landing-purple-2);
}

.fm-fieldset {
    margin: 0 0 24px;
    padding: 0 0 24px;
    border: 0;
    border-bottom: 1px solid var(--landing-line);
}

.fm-fieldset:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.fm-legend {
    margin: 0 0 16px;
    color: #332a46;
    font-size: 18px;
    font-weight: 950;
}

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

.fm-grid.one {
    grid-template-columns: 1fr;
}

.fm-label {
    display: block;
    margin: 0 0 7px;
    color: #4b425d;
    font-size: 13px;
    font-weight: 950;
}

.fm-input,
.fm-select,
.fm-textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid rgba(89, 69, 139, 0.22);
    border-radius: 8px;
    background: #ffffff;
    color: #241b38;
    font-size: 15px;
    font-weight: 800;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fm-textarea {
    min-height: 96px;
    resize: vertical;
}

.fm-input:focus,
.fm-select:focus,
.fm-textarea:focus {
    border-color: var(--landing-purple-2);
    box-shadow: 0 0 0 4px rgba(109, 60, 255, 0.1);
}

.fm-options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.fm-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fm-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid rgba(89, 69, 139, 0.2);
    border-radius: 8px;
    background: #ffffff;
    color: #342a48;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fm-options input:checked + .fm-chip {
    border-color: var(--landing-purple-2);
    background: #f2edff;
    color: var(--landing-purple);
    box-shadow: inset 0 0 0 1px rgba(109, 60, 255, 0.16);
}

.fm-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--landing-line);
    color: #4c435d;
    font-size: 15px;
    font-weight: 850;
}

.fm-summary-row strong {
    color: #211936;
    font-size: 18px;
    font-weight: 950;
}

.fm-total {
    margin-top: 4px;
    color: var(--landing-purple);
    font-size: 28px;
    font-weight: 950;
}

.fm-alert {
    margin: 18px 0;
    padding: 15px;
    border-radius: 8px;
    background: #f6f2ff;
    color: #473e5b;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.65;
}

.fm-alert strong {
    color: #231a38;
    font-weight: 1000;
}

.fm-checks {
    display: grid;
    gap: 11px;
    margin-bottom: 18px;
}

.fm-check {
    display: flex;
    gap: 9px;
    color: #433a52;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.45;
}

.fm-check input {
    margin-top: 3px;
    accent-color: var(--landing-purple);
}

.fm-submit {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #4c17d4 0%, #6b37ff 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 1000;
    -webkit-text-stroke: 0.2px currentColor;
    letter-spacing: 0;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(76, 23, 212, 0.22);
}

.fm-submit:hover {
    transform: translateY(-1px);
}

.fm-note {
    display: block;
    margin-top: 12px;
    color: #625974;
    font-size: 13px;
    font-weight: 800;
}

.fm-chat-status {
    margin-top: 16px;
    padding: 14px 15px;
    border: 1px solid rgba(109, 60, 255, 0.16);
    border-radius: 8px;
    background: #f8f5ff;
    color: #453957;
}

.fm-chat-status strong {
    display: block;
    margin-bottom: 5px;
    color: #231a38;
    font-size: 16px;
    font-weight: 1000;
    line-height: 1.3;
}

.fm-chat-status span {
    display: block;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.45;
}

.fm-hot-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.fm-hot-head .fm-section-title {
    margin: 0;
    text-align: left;
}

.fm-hot-head .fm-section-title span::after {
    left: 0;
    transform: none;
}

.fm-view-all {
    color: var(--landing-purple);
    font-size: 14px;
    font-weight: 950;
    text-decoration: none;
    white-space: nowrap;
}

.fm-card-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.fm-event-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(45, 30, 86, 0.08);
}

.fm-event-img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f1edff;
}

.fm-event-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.fm-event-card:hover .fm-event-img img {
    transform: scale(1.04);
}

.fm-event-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fm-event-body h3 {
    min-height: 42px;
    margin: 0 0 8px;
    color: #211936;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fm-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 5px 0;
    color: #665d74;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.fm-meta:last-of-type {
    margin-bottom: 12px;
}

.fm-meta i {
    width: 14px;
    color: var(--landing-purple-2);
    text-align: center;
}

.fm-small-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-top: auto;
    border-radius: 6px;
    background: var(--landing-purple);
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
}

.fm-small-btn:hover {
    background: #3710aa;
    color: #ffffff;
}

.fm-faq {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 12px;
}

.fm-faq details {
    box-shadow: 0 8px 20px rgba(45, 30, 86, 0.05);
}

.fm-faq summary {
    position: relative;
    padding: 16px 42px 16px 18px;
    color: #2a213d;
    font-size: 15px;
    font-weight: 950;
    list-style: none;
    cursor: pointer;
}

.fm-faq summary::-webkit-details-marker {
    display: none;
}

.fm-faq summary::after {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 18px;
    color: #5d536b;
    font-family: "Font Awesome 6 Pro";
    transform: translateY(-50%);
}

.fm-faq details[open] summary::after {
    content: "\f106";
}

.fm-faq p {
    margin: 0;
    padding: 0 18px 17px;
    color: #5e556c;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.7;
}

@media (max-width: 1199px) {
    .fm-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fm-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fm-benefit:nth-child(3) {
        border-right: 0;
    }

    .fm-benefit:nth-child(n+4) {
        border-top: 1px solid var(--landing-line);
    }
}

@media (max-width: 991px) {
    .header__action-btns {
        display: none;
    }

    .fm-benefits,
    .fm-flow,
    .fm-form-panel,
    .fm-faq {
        grid-template-columns: 1fr;
    }

    .fm-flow {
        gap: 18px;
        max-width: 420px;
    }

    .fm-benefit {
        border-top: 1px solid var(--landing-line);
        border-right: 0;
    }

    .fm-benefit:first-child {
        border-top: 0;
    }

    .fm-step::after {
        display: none;
    }

    .fm-summary-card {
        position: static;
    }
}

@media (max-width: 575px) {
    .fm-container {
        width: min(100% - 22px, 1710px);
    }

    .fm-hero {
        padding-top: 14px;
    }

    .fm-hero-action {
        left: 6%;
        bottom: 12%;
    }

    .fm-cta {
        min-width: 128px;
        min-height: 40px;
        gap: 7px;
        padding: 0 14px;
        font-size: 14px;
    }

    .fm-seo-intro {
        padding: 24px 0 18px;
    }

    .fm-seo-card {
        padding: 24px 16px 22px;
    }

    .fm-seo-intro h1 {
        font-size: 28px;
    }

    .fm-seo-intro h2 {
        font-size: 20px;
    }

    .fm-seo-intro p {
        font-size: 15px;
    }

    .fm-section {
        padding: 32px 0;
    }

    .fm-section-title {
        font-size: 24px;
    }

    .fm-form-card,
    .fm-summary-card {
        padding: 18px;
    }

    .fm-grid,
    .fm-card-grid {
        grid-template-columns: 1fr;
    }

    .fm-hot-head {
        align-items: flex-start;
    }
}

.instant-match-page {
    min-height: 720px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaff 58%, #ffffff 100%);
    color: #211936;
    font-family: "Jost", "Noto Sans TC", Arial, sans-serif;
}

.im-container {
    width: min(1710px, calc(100% - 28px));
    margin: 0 auto;
}

.im-market {
    padding: 18px 0 36px;
}

.im-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 18px;
}

.im-topbar h1 {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    margin: 0 0 8px;
    padding: 5px 14px;
    border: 1px solid rgba(84, 33, 221, 0.18);
    border-radius: 999px;
    background: linear-gradient(135deg, #f6f1ff 0%, #ffffff 100%);
    color: #5421dd;
    font-size: 18px;
    font-weight: 1000;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: 0 8px 18px rgba(84, 33, 221, 0.08);
}

.im-topbar h2 {
    margin: 0 0 8px;
    color: #141024;
    font-size: 32px;
    font-weight: 1000;
    line-height: 1.16;
    letter-spacing: 0;
}

.im-topbar h2 i {
    margin-left: 8px;
    color: #5421dd;
}

.im-topbar p {
    margin: 0;
    color: #59516b;
    font-size: 17px;
    font-weight: 850;
}

.im-refresh-card {
    display: grid;
    grid-template-columns: 42px minmax(170px, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-width: 445px;
    padding: 18px 20px;
    border: 1px solid rgba(109, 60, 255, 0.12);
    border-radius: 8px;
    background: linear-gradient(135deg, #fbf3ff 0%, #f4eaff 100%);
    box-shadow: 0 12px 30px rgba(75, 24, 209, 0.08);
}

.im-refresh-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    color: #5421dd;
    font-size: 20px;
}

.im-refresh-card strong,
.im-refresh-card span {
    display: block;
}

.im-refresh-card strong {
    color: #221936;
    font-size: 16px;
    font-weight: 1000;
    line-height: 1.25;
}

.im-refresh-card span {
    color: #6a6077;
    font-size: 14px;
    font-weight: 850;
}

.im-refresh-card button {
    min-height: 40px;
    padding: 0 17px;
    border: 1px solid rgba(83, 61, 132, 0.12);
    border-radius: 8px;
    background: #ffffff;
    color: #211936;
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 8px 20px rgba(55, 32, 93, 0.08);
}

.im-filter-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 14px;
    overflow: visible;
    padding-bottom: 0;
}

.im-filter-row button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(109, 60, 255, 0.13);
    border-radius: 8px;
    background: #fbfaff;
    color: #211936;
    font-size: 15px;
    font-weight: 1000;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(53, 34, 92, 0.06);
}

.im-filter-row button.active {
    background: linear-gradient(135deg, #5421dd 0%, #4514c4 100%);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(75, 24, 209, 0.25);
}

.im-filter-row span {
    min-width: 30px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #eee6ff;
    color: #5a30d6;
    font-size: 13px;
    font-weight: 1000;
}

.im-filter-row .more {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.im-market-tools,
.im-market-notes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
}

.im-market-tools span,
.im-market-notes span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f6f1ff;
    color: #4a405d;
    font-size: 14px;
    font-weight: 900;
}

.im-market-tools i,
.im-market-notes i {
    color: #5421dd;
}

.im-market-notes {
    margin: 14px 0 0;
}

.im-market-notes span {
    background: #fff8e8;
    color: #5b4930;
}

.im-market-notes i {
    color: #f2a900;
}

.im-table-wrap {
    overflow-x: hidden;
    border: 1px solid rgba(109, 60, 255, 0.11);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(42, 28, 78, 0.08);
}

.im-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    color: #251f36;
}

.im-table thead th {
    padding: 14px 12px;
    background: #f3effb;
    color: #282039;
    font-size: 16px;
    font-weight: 1000;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
}

.im-table thead th:first-child {
    border-top-left-radius: 8px;
}

.im-table thead th:last-child {
    border-top-right-radius: 8px;
}

.im-table th:nth-child(1),
.im-table td:nth-child(1) {
    width: 28%;
}

.im-table th:nth-child(2),
.im-table td:nth-child(2) {
    width: 12%;
}

.im-table th:nth-child(3),
.im-table td:nth-child(3) {
    width: 9%;
}

.im-table th:nth-child(4),
.im-table td:nth-child(4) {
    width: 5%;
}

.im-table th:nth-child(5),
.im-table td:nth-child(5) {
    width: 10%;
}

.im-table th:nth-child(6),
.im-table td:nth-child(6) {
    width: 8%;
}

.im-table th:nth-child(7),
.im-table td:nth-child(7) {
    width: 10%;
}

.im-table th:nth-child(8),
.im-table td:nth-child(8) {
    width: 8%;
}

.im-table th:nth-child(9),
.im-table td:nth-child(9) {
    width: 10%;
}

.im-table tbody td {
    padding: 10px 12px;
    border-top: 1px solid rgba(67, 48, 105, 0.09);
    color: #2b2438;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.35;
    vertical-align: middle;
}

.im-table tbody tr {
    transition: background 0.18s ease;
}

.im-table tbody tr:hover {
    background: #fcfaff;
}

.im-table td > span,
.im-table td em {
    display: block;
}

.im-event {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.im-event img {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    background: #f0ecff;
}

.im-event strong {
    display: block;
    margin-bottom: 4px;
    color: #171224;
    font-size: 15px;
    font-weight: 1000;
    line-height: 1.25;
}

.im-event span {
    display: block;
    color: #696173;
    font-size: 13px;
    font-weight: 850;
}

.im-date {
    margin-bottom: 4px;
}

.im-date i,
.im-event i {
    margin-right: 6px;
    color: #5e5771;
}

.im-table em {
    width: fit-content;
    margin-top: 5px;
    padding: 4px 8px;
    border-radius: 6px;
    background: #eee7ff;
    color: #5a30d6;
    font-size: 13px;
    font-style: normal;
    font-weight: 1000;
}

.im-price {
    color: #5421dd;
    font-size: 20px;
    font-weight: 1000;
    line-height: 1.05;
}

.im-price + span {
    color: #494257;
    font-size: 13px;
    font-weight: 900;
}

.im-hot {
    color: #ff426b;
    font-weight: 1000;
}

.im-hot b {
    margin-left: 5px;
    padding: 2px 6px;
    border-radius: 999px;
    background: #ffedf2;
    color: #ff426b;
    font-size: 10px;
    font-weight: 1000;
}

.im-claim {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 138px;
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #5421dd 0%, #4514c4 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 1000;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(75, 24, 209, 0.24);
}

.im-seo {
    padding: 20px 0 48px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
}

.im-seo-card {
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(109, 60, 255, 0.13);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(42, 28, 78, 0.08);
}

.im-seo-head {
    position: relative;
    padding: 34px 38px;
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 46%, #f2ebff 100%);
}

.im-seo-head::after {
    content: "";
    position: absolute;
    right: 34px;
    top: 26px;
    width: 102px;
    height: 102px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(84, 33, 221, 0.16) 0%, rgba(84, 33, 221, 0) 68%);
}

.im-seo-head span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: #5421dd;
    font-size: 14px;
    font-weight: 1000;
    box-shadow: 0 8px 20px rgba(84, 33, 221, 0.1);
}

.im-seo-card h2,
.im-seo-head h2 {
    margin: 0 0 12px;
    color: #211936;
    font-size: 30px;
    font-weight: 1000;
    line-height: 1.2;
    letter-spacing: 0;
}

.im-seo-head p {
    max-width: 1120px;
    margin: 0;
    color: #5d536b;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.75;
}

.im-seo-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 22px 28px 8px;
}

.im-seo-highlights article {
    min-height: 162px;
    padding: 22px;
    border: 1px solid rgba(109, 60, 255, 0.13);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
    box-shadow: 0 12px 28px rgba(42, 28, 78, 0.06);
}

.im-seo-highlights i,
.im-feature-grid i,
.im-security-band i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #efe8ff;
    color: #5421dd;
    font-size: 20px;
}

.im-seo-highlights h2 {
    display: block;
    margin: 0 0 8px;
    color: #211936;
    font-size: 19px;
    font-weight: 1000;
    line-height: 1.25;
    letter-spacing: 0;
}

.im-seo-highlights p {
    margin: 0;
    color: #5f566d;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.6;
}

.im-feature-title {
    margin: 28px 28px 18px !important;
}

.im-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0 28px 28px;
}

.im-feature-grid article {
    min-height: 170px;
    padding: 18px;
    border: 1px solid rgba(109, 60, 255, 0.12);
    border-radius: 8px;
    background: #fbfaff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.im-feature-grid article:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(42, 28, 78, 0.08);
}

.im-feature-grid h3 {
    margin: 0 0 8px;
    color: #231a38;
    font-size: 18px;
    font-weight: 1000;
    line-height: 1.25;
    letter-spacing: 0;
}

.im-feature-grid p {
    margin: 0;
    color: #5f566d;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.6;
}

.im-security-band {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin: 0 28px 28px;
    padding: 20px 22px;
    border: 1px solid rgba(84, 33, 221, 0.14);
    border-radius: 8px;
    background: linear-gradient(135deg, #5421dd 0%, #6d3cff 100%);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(84, 33, 221, 0.2);
}

.im-security-band i {
    margin: 0;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.im-security-band p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.65;
}

.im-security-band strong {
    color: #ffffff;
    font-weight: 1000;
}

.im-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(21, 15, 36, 0.48);
}

.im-modal.show {
    display: flex;
}

.im-modal-card {
    width: min(560px, 100%);
    padding: 28px;
    border-radius: 8px;
    background: #ffffff;
    color: #211936;
    box-shadow: 0 22px 70px rgba(18, 10, 40, 0.28);
}

.im-modal-card h2 {
    margin: 0 0 18px;
    color: #5421dd;
    font-size: 26px;
    font-weight: 1000;
    letter-spacing: 0;
}

.im-modal-card dl {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 8px 14px;
    margin: 0 0 18px;
}

.im-modal-card dt,
.im-modal-card dd {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
}

.im-modal-card dt {
    color: #6a6077;
}

.im-modal-card ul {
    display: grid;
    gap: 8px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.im-modal-card li {
    position: relative;
    padding-left: 24px;
    color: #3e354d;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.55;
}

.im-modal-card li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 1px;
    color: #5421dd;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
}

.im-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.im-modal-actions button {
    min-height: 42px;
    padding: 0 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 1000;
}

.im-confirm {
    border: 0;
    background: #5421dd;
    color: #ffffff;
}

.im-cancel {
    border: 1px solid rgba(83, 61, 132, 0.16);
    background: #ffffff;
    color: #2b2438;
}

@media (max-width: 1199px) {
    .im-topbar {
        flex-direction: column;
    }

    .im-refresh-card {
        width: 100%;
        min-width: 0;
    }

    .im-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .im-seo-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .im-topbar h2 {
        font-size: 26px;
    }

    .im-refresh-card {
        grid-template-columns: 42px 1fr;
    }

    .im-refresh-card button {
        grid-column: 1 / -1;
    }

    .im-feature-grid {
        grid-template-columns: 1fr;
    }

    .im-seo-card {
        padding: 0;
    }

    .im-seo-head {
        padding: 26px 18px;
    }

    .im-seo-highlights,
    .im-feature-grid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .im-feature-title {
        margin-left: 16px !important;
        margin-right: 16px !important;
    }

    .im-security-band {
        grid-template-columns: 1fr;
        margin-left: 16px;
        margin-right: 16px;
    }
}

.fast-sell-page {
    overflow-x: hidden;
    padding-bottom: 132px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaff 46%, #ffffff 100%);
    color: #211936;
    font-family: "Jost", "Noto Sans TC", Arial, sans-serif;
}

.fs-container {
    width: min(1710px, calc(100% - 28px));
    margin: 0 auto;
}

.fs-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fs-hero {
    padding: 0 0 12px;
}

.fs-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f0ff;
    box-shadow: 0 18px 48px rgba(56, 32, 112, 0.12);
}

.fs-hero-card img {
    display: block;
    width: 100%;
    height: auto;
}

.fs-hero-cta {
    position: absolute;
    left: 6.2%;
    top: 64.5%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 300px;
    min-height: 74px;
    padding: 0 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4b18d1 0%, #3b0fbb 100%);
    color: #ffffff;
    font-size: 25px;
    font-weight: 1000;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 16px 28px rgba(75, 24, 209, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fs-hero-cta:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(75, 24, 209, 0.34);
}

.fs-section {
    padding: 28px 0;
}

.fs-title {
    position: relative;
    margin: 0 0 28px;
    color: #211936;
    font-size: 30px;
    font-weight: 1000;
    line-height: 1.22;
    text-align: center;
    letter-spacing: 0;
}

.fs-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: #6d3cff;
    transform: translateX(-50%);
}

.fs-benefits {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-top: 1px solid rgba(109, 60, 255, 0.13);
    border-bottom: 1px solid rgba(109, 60, 255, 0.13);
    background: #ffffff;
}

.fs-benefits article {
    min-height: 210px;
    padding: 28px 18px 24px;
    border-right: 1px solid rgba(109, 60, 255, 0.13);
    text-align: center;
}

.fs-benefits article:last-child {
    border-right: 0;
}

.fs-benefits i,
.fs-flow i,
.fs-stat-grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #f0e9ff;
    color: #5a24df;
    font-size: 38px;
}

.fs-benefits h3,
.fs-flow h3,
.fs-stat-grid h3 {
    margin: 0 0 9px;
    color: #211936;
    font-size: 19px;
    font-weight: 1000;
    line-height: 1.25;
    letter-spacing: 0;
}

.fs-benefits p,
.fs-flow p,
.fs-stat-grid p {
    margin: 0;
    color: #5f566d;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.58;
}

.fs-flow-section {
    padding-top: 22px;
}

.fs-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 34px;
    border-top: 1px solid rgba(109, 60, 255, 0.12);
    padding-top: 34px;
}

.fs-flow article {
    position: relative;
    min-height: 210px;
    padding: 2px 12px 0;
    text-align: center;
}

.fs-flow article::after {
    content: "\f061";
    position: absolute;
    top: 61px;
    right: -24px;
    color: #5b5367;
    font-family: "Font Awesome 6 Pro";
    font-size: 18px;
    font-weight: 400;
}

.fs-flow article:last-child::after {
    display: none;
}

.fs-flow span {
    position: absolute;
    top: 0;
    left: calc(50% - 62px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #4b18d1;
    color: #ffffff;
    font-size: 15px;
    font-weight: 1000;
}

.fs-flow i {
    margin-top: 24px;
}

.fs-security {
    padding: 22px 0 18px;
}

.fs-security-card {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 280px;
    align-items: center;
    gap: 34px;
    padding: 28px 34px;
    border: 1px solid rgba(109, 60, 255, 0.12);
    border-radius: 8px;
    background:
        radial-gradient(circle at 10% 50%, rgba(109, 60, 255, 0.16) 0%, rgba(109, 60, 255, 0) 28%),
        linear-gradient(135deg, #fbf8ff 0%, #ffffff 52%, #f0e9ff 100%);
    box-shadow: 0 18px 42px rgba(56, 32, 112, 0.1);
}

.fs-security-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 150px;
    border-radius: 8px;
    background: linear-gradient(135deg, #efe7ff 0%, #ffffff 100%);
}

.fs-security-visual i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    border-radius: 32px;
    background: linear-gradient(135deg, #6f3cff 0%, #3c0fba 100%);
    color: #ffffff;
    font-size: 48px;
    box-shadow: 0 20px 34px rgba(75, 24, 209, 0.24);
}

.fs-security-card h2 {
    margin: 0 0 18px;
    color: #211936;
    font-size: 30px;
    font-weight: 1000;
    line-height: 1.24;
    letter-spacing: 0;
}

.fs-security-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
}

.fs-security-grid p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    color: #4f465f;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.55;
}

.fs-security-grid i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #5a24df;
}

.fs-security-grid strong {
    color: #211936;
    font-weight: 1000;
}

.fs-security-card > a,
.fs-bottom-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 1000;
    text-decoration: none;
}

.fs-security-card > a {
    background: linear-gradient(135deg, #4b18d1 0%, #3b0fbb 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(75, 24, 209, 0.24);
}

.fs-security-card > a:hover,
.fs-bottom-actions .primary:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.fs-stats {
    padding: 0 0 28px;
}

.fs-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(109, 60, 255, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(56, 32, 112, 0.08);
}

.fs-stat-grid article {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 16px;
    min-height: 120px;
    padding: 24px 28px;
    border-right: 1px solid rgba(109, 60, 255, 0.12);
}

.fs-stat-grid article:last-child {
    border-right: 0;
}

.fs-stat-grid i {
    grid-row: 1 / 3;
    width: 64px;
    height: 64px;
    margin: 0;
    font-size: 30px;
}

.fs-stat-grid h3 {
    margin: 0;
    color: #4b18d1;
    font-size: 30px;
}

.fs-stat-grid p {
    font-size: 16px;
    font-weight: 950;
}

.fs-bottom-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 900;
    background: linear-gradient(135deg, #4b18d1 0%, #7100b8 100%);
    box-shadow: 0 -16px 34px rgba(44, 16, 112, 0.2);
}

.fs-bottom-cta .fs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 112px;
}

.fs-bottom-cta h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 1000;
    line-height: 1.2;
    letter-spacing: 0;
}

.fs-bottom-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    font-weight: 850;
}

.fs-bottom-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.fs-bottom-actions .outline {
    min-width: 230px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    color: #ffffff;
}

.fs-bottom-actions .outline:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.fs-bottom-actions .primary {
    min-width: 230px;
    background: #ffffff;
    color: #4b18d1;
}

.fs-bottom-actions .primary:hover {
    color: #4b18d1;
}

@media (max-width: 1399px) {
    .fs-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fs-benefits article:nth-child(3n) {
        border-right: 0;
    }

    .fs-benefits article:nth-child(n+4) {
        border-top: 1px solid rgba(109, 60, 255, 0.13);
    }

    .fs-flow {
        gap: 18px;
    }

    .fs-security-card {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .fs-security-card > a {
        grid-column: 2;
        width: fit-content;
    }
}

@media (max-width: 991px) {
    .fast-sell-page {
        padding-bottom: 240px;
    }

    .fs-hero-cta {
        min-width: 220px;
        min-height: 56px;
        font-size: 18px;
    }

    .fs-flow,
    .fs-stat-grid {
        grid-template-columns: 1fr;
    }

    .fs-flow {
        gap: 22px;
        max-width: 440px;
        margin: 0 auto;
    }

    .fs-flow article::after {
        display: none;
    }

    .fs-stat-grid article,
    .fs-stat-grid article:last-child {
        border-right: 0;
        border-bottom: 1px solid rgba(109, 60, 255, 0.12);
    }

    .fs-stat-grid article:last-child {
        border-bottom: 0;
    }

    .fs-security-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .fs-security-card > a {
        grid-column: auto;
    }

    .fs-bottom-cta .fs-container,
    .fs-bottom-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fs-bottom-cta .fs-container {
        padding-top: 26px;
        padding-bottom: 26px;
    }
}

@media (max-width: 575px) {
    .fast-sell-page {
        padding-bottom: 280px;
    }

    .fs-container {
        width: min(100% - 22px, 1710px);
    }

    .fs-hero-cta {
        left: 6%;
        top: auto;
        bottom: 25%;
        min-width: 164px;
        min-height: 44px;
        padding: 0 16px;
        font-size: 14px;
    }

    .fs-title,
    .fs-security-card h2,
    .fs-bottom-cta h2 {
        font-size: 24px;
    }

    .fs-benefits {
        grid-template-columns: 1fr;
    }

    .fs-benefits article,
    .fs-benefits article:nth-child(3n) {
        min-height: 0;
        border-right: 0;
        border-top: 1px solid rgba(109, 60, 255, 0.13);
    }

    .fs-benefits article:first-child {
        border-top: 0;
    }

    .fs-security-card {
        gap: 20px;
        padding: 24px 18px;
    }

    .fs-security-visual {
        width: 100%;
    }

    .fs-security-grid {
        grid-template-columns: 1fr;
    }

    .fs-stat-grid article {
        grid-template-columns: 58px minmax(0, 1fr);
        padding: 20px 18px;
    }

    .fs-stat-grid h3 {
        font-size: 24px;
    }
}

.instant-request-page {
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaff 58%, #ffffff 100%);
    color: #201936;
    font-family: "Jost", "Noto Sans TC", Arial, sans-serif;
}

.ir-container {
    width: min(1710px, calc(100% - 28px));
    margin: 0 auto;
}

.ir-hero {
    padding: 20px 0 14px;
}

.ir-hero .ir-container,
.ir-progress ol {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ir-hero h1 {
    margin: 0 0 8px;
    color: #181324;
    font-size: 34px;
    font-weight: 1000;
    line-height: 1.12;
    letter-spacing: 0;
}

.ir-hero h2 {
    margin: 0 0 8px;
    color: #211936;
    font-size: 20px;
    font-weight: 1000;
    line-height: 1.28;
    letter-spacing: 0;
}

.ir-hero p {
    margin: 0;
    color: #60586c;
    font-size: 16px;
    font-weight: 850;
}

.ir-hero a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5421dd;
    font-size: 14px;
    font-weight: 1000;
    text-decoration: none;
    white-space: nowrap;
}

.ir-progress {
    padding: 10px 0 22px;
}

.ir-progress ol {
    margin: 0;
    padding: 0 82px;
    list-style: none;
}

.ir-progress li {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 0;
    gap: 10px;
    color: #9a96a3;
    font-size: 15px;
    font-weight: 1000;
    white-space: nowrap;
}

.ir-progress li::after {
    content: "";
    height: 2px;
    flex: 1;
    margin-left: 14px;
    background: #e6e3ec;
}

.ir-progress li:last-child::after {
    display: none;
}

.ir-progress li.active {
    color: #5421dd;
}

.ir-progress span,
.ir-form-card h2 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #96939e;
    color: #ffffff;
    font-size: 14px;
    font-weight: 1000;
}

.ir-progress li.active span,
.ir-form-card h2 span {
    background: #5421dd;
}

.ir-workspace {
    padding: 0 0 34px;
}

.ir-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 28px;
    align-items: start;
}

.ir-form-card,
.ir-side-card,
.ir-seo-card,
.ir-process-grid article,
.ir-hot-grid article,
.ir-faq-grid details {
    border: 1px solid rgba(109, 60, 255, 0.13);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(43, 27, 88, 0.06);
}

.ir-form-card {
    padding: 26px 28px 30px;
}

.ir-form-section {
    margin-bottom: 28px;
}

.ir-form-card h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    color: #201936;
    font-size: 21px;
    font-weight: 1000;
    line-height: 1.25;
    letter-spacing: 0;
}

.ir-search {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.ir-search input,
.ir-field-grid input,
.ir-field-grid select {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(80, 67, 110, 0.16);
    border-radius: 8px;
    background: #ffffff;
    color: #231d32;
    font-size: 15px;
    font-weight: 850;
    outline: none;
}

.ir-search input {
    padding: 0 48px 0 18px;
}

.ir-search i {
    position: absolute;
    top: 50%;
    right: 18px;
    color: #6d6476;
    transform: translateY(-50%);
}

.ir-selected-event {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr) 34px;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(80, 67, 110, 0.14);
    border-radius: 8px;
    background: #ffffff;
}

.ir-selected-event img {
    display: block;
    width: 126px;
    height: 126px;
    border-radius: 8px;
    object-fit: cover;
    background: #f1edff;
}

.ir-selected-event h3 {
    margin: 0 0 12px;
    color: #171224;
    font-size: 18px;
    font-weight: 1000;
    line-height: 1.3;
    letter-spacing: 0;
}

.ir-selected-event p {
    margin: 6px 0;
    color: #5f566d;
    font-size: 15px;
    font-weight: 850;
}

.ir-selected-event i {
    width: 18px;
    color: #5f566d;
}

.ir-selected-event button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #5f566d;
}

.ir-option-grid {
    display: grid;
    gap: 12px;
}

.ir-option-grid.dates {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ir-option-grid.areas {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ir-option-grid.rows {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ir-option-grid button {
    min-height: 48px;
    padding: 9px 12px;
    border: 1px solid rgba(80, 67, 110, 0.16);
    border-radius: 8px;
    background: #ffffff;
    color: #2f293e;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.22;
    transition: all 0.18s ease;
}

.ir-option-grid button small {
    display: block;
    margin-top: 4px;
    color: #6a6077;
    font-size: 12px;
    font-weight: 850;
}

.ir-option-grid button.active,
.ir-option-grid button.active small {
    border-color: #5421dd;
    background: linear-gradient(135deg, #5421dd 0%, #4514c4 100%);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(84, 33, 221, 0.22);
}

.ir-label {
    margin: 0 0 10px;
    color: #4e465e;
    font-size: 14px;
    font-weight: 1000;
}

.ir-note {
    margin: 10px 0 0;
    color: #6b6276;
    font-size: 13px;
    font-weight: 800;
}

.ir-budget {
    display: grid;
    grid-template-columns: 110px minmax(180px, 1fr) 130px;
    align-items: center;
    gap: 24px;
}

.ir-budget strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 1px solid rgba(80, 67, 110, 0.16);
    border-radius: 8px;
    color: #30283f;
    font-size: 16px;
    font-weight: 1000;
}

.ir-scale {
    display: flex;
    justify-content: space-between;
    margin: 14px 0 0 134px;
    color: #938b9e;
    font-size: 13px;
    font-weight: 1000;
}

.ir-range {
    --min-percent: 12%;
    --max-percent: 52%;
    position: relative;
    height: 38px;
}

.ir-range-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        #ebe7f4 0%,
        #ebe7f4 var(--min-percent),
        #5421dd var(--min-percent),
        #5421dd var(--max-percent),
        #ebe7f4 var(--max-percent),
        #ebe7f4 100%
    );
    transform: translateY(-50%);
}

.ir-range input[type="range"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    margin: 0;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.ir-range input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    background: transparent;
}

.ir-range input[type="range"]::-moz-range-track {
    height: 8px;
    background: transparent;
}

.ir-range input[type="range"]::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    margin-top: -8px;
    border: 0;
    border-radius: 50%;
    background: #5421dd;
    box-shadow: 0 5px 14px rgba(84, 33, 221, 0.28);
    cursor: pointer;
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
}

.ir-range input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: #5421dd;
    box-shadow: 0 5px 14px rgba(84, 33, 221, 0.28);
    cursor: pointer;
    pointer-events: auto;
}

.ir-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.ir-field-grid label {
    display: block;
    color: #2e263d;
    font-size: 14px;
    font-weight: 1000;
}

.ir-field-grid input,
.ir-field-grid select {
    margin-top: 8px;
    padding: 0 14px;
}

.ir-field-grid .wide {
    grid-column: 1 / -1;
}

.ir-phone {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 10px;
}

.ir-terms {
    padding: 18px;
    border: 1px solid rgba(84, 33, 221, 0.12);
    border-radius: 8px;
    background: linear-gradient(135deg, #fbf9ff 0%, #ffffff 100%);
}

.ir-terms strong {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #5421dd;
    font-size: 15px;
    font-weight: 1000;
}

.ir-terms ul {
    display: grid;
    gap: 6px;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.ir-terms li,
.ir-check-list li {
    position: relative;
    padding-left: 24px;
    color: #4d455c;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.5;
}

.ir-terms li::before,
.ir-check-list li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 1px;
    color: #5421dd;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
}

.ir-terms label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #3b334a;
    font-size: 14px;
    font-weight: 950;
}

.ir-terms input {
    accent-color: #5421dd;
}

.ir-submit {
    width: 100%;
    min-height: 58px;
    margin-top: 18px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #5421dd 0%, #4514c4 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 1000;
    box-shadow: 0 12px 26px rgba(84, 33, 221, 0.24);
}

.ir-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 112px;
}

.ir-side-card {
    padding: 28px;
}

.ir-side-card h2 {
    margin: 0 0 18px;
    color: #201936;
    font-size: 22px;
    font-weight: 1000;
    line-height: 1.22;
    letter-spacing: 0;
}

.ir-side-flow {
    display: grid;
    gap: 0;
}

.ir-side-flow article {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 16px;
    min-height: 112px;
    padding: 0 0 28px;
}

.ir-side-flow article::before {
    content: "";
    position: absolute;
    top: 44px;
    bottom: 0;
    left: 21px;
    border-left: 1px dashed rgba(84, 33, 221, 0.24);
}

.ir-side-flow article:last-child {
    padding-bottom: 0;
}

.ir-side-flow article:last-child::before {
    display: none;
}

.ir-side-flow i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #5421dd;
    border-radius: 50%;
    color: #5421dd;
    font-size: 18px;
}

.ir-side-flow h3 {
    grid-column: 2;
    margin: 0 0 5px;
    color: #211936;
    font-size: 17px;
    font-weight: 1000;
    letter-spacing: 0;
}

.ir-side-flow p,
.ir-side-card p {
    margin: 0;
    color: #5d536b;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.6;
}

.ir-side-flow p {
    grid-column: 2;
    max-width: 230px;
}

.ir-check-list {
    display: grid;
    gap: 9px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.ir-security-icons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ir-security-icons span {
    display: grid;
    justify-items: center;
    gap: 8px;
    color: #4d455c;
    font-size: 13px;
    font-weight: 950;
    text-align: center;
}

.ir-security-icons i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f1ebff;
    color: #5421dd;
    font-size: 20px;
}

.ir-side-card.help a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    margin-top: 16px;
    border: 1px solid rgba(80, 67, 110, 0.16);
    border-radius: 999px;
    color: #5421dd;
    font-size: 15px;
    font-weight: 1000;
    text-decoration: none;
}

.ir-seo,
.ir-section {
    padding: 28px 0;
}

.ir-seo-card {
    padding: 34px;
    background: linear-gradient(135deg, #fbf9ff 0%, #ffffff 100%);
}

.ir-seo-card h2,
.ir-section h2 {
    margin: 0 0 18px;
    color: #201936;
    font-size: 30px;
    font-weight: 1000;
    line-height: 1.22;
    letter-spacing: 0;
    text-align: center;
}

.ir-seo-card > p {
    max-width: 1100px;
    margin: 0 auto 24px;
    color: #5d536b;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.75;
    text-align: center;
}

.ir-benefit-grid,
.ir-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.ir-benefit-grid article,
.ir-process-grid article {
    padding: 20px;
    border-radius: 8px;
    background: #ffffff;
}

.ir-benefit-grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #f1ebff;
    color: #5421dd;
    font-size: 20px;
}

.ir-benefit-grid h3,
.ir-process-grid h3,
.ir-hot-grid h3,
.ir-faq-grid h3 {
    margin: 0 0 8px;
    color: #211936;
    font-size: 17px;
    font-weight: 1000;
    line-height: 1.3;
    letter-spacing: 0;
}

.ir-benefit-grid p,
.ir-process-grid p,
.ir-faq-grid p {
    margin: 0;
    color: #5d536b;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.6;
}

.ir-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ir-process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #5421dd;
    color: #ffffff;
    font-size: 15px;
    font-weight: 1000;
}

.ir-hot-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.ir-hot-grid article {
    overflow: hidden;
}

.ir-hot-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f1edff;
}

.ir-hot-grid h3 {
    padding: 12px;
    font-size: 14px;
}

.ir-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 12px;
}

.ir-faq-grid details {
    padding: 0;
    box-shadow: 0 8px 20px rgba(45, 30, 86, 0.05);
}

.ir-faq-grid summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 16px 42px 16px 18px;
    color: #2a213d;
    font-size: 15px;
    font-weight: 950;
    list-style: none;
    cursor: pointer;
}

.ir-faq-grid summary::-webkit-details-marker {
    display: none;
}

.ir-faq-grid summary::after {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 18px;
    color: #5d536b;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    transform: translateY(-50%);
}

.ir-faq-grid details[open] summary::after {
    content: "\f106";
}

.ir-faq-grid h3 {
    margin: 0;
}

.ir-faq-grid p {
    padding: 0 18px 17px;
}

@media (max-width: 1399px) {
    .ir-layout {
        grid-template-columns: minmax(0, 1fr) 360px;
    }

    .ir-option-grid.dates {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ir-benefit-grid,
    .ir-hot-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .ir-hero .ir-container,
    .ir-layout {
        grid-template-columns: 1fr;
    }

    .ir-hero .ir-container {
        display: grid;
    }

    .ir-progress ol {
        padding: 0;
        overflow-x: auto;
    }

    .ir-sidebar {
        position: static;
    }

    .ir-option-grid.areas,
    .ir-option-grid.rows,
    .ir-process-grid,
    .ir-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .ir-container {
        width: min(100% - 22px, 1710px);
    }

    .ir-hero h1 {
        font-size: 28px;
    }

    .ir-form-card,
    .ir-side-card,
    .ir-seo-card {
        padding: 18px;
    }

    .ir-selected-event,
    .ir-field-grid,
    .ir-benefit-grid,
    .ir-process-grid,
    .ir-hot-grid,
    .ir-option-grid.dates,
    .ir-option-grid.areas,
    .ir-option-grid.rows {
        grid-template-columns: 1fr;
    }

    .ir-faq-grid {
        grid-template-columns: 1fr;
    }

    .ir-selected-event img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .ir-budget {
        grid-template-columns: 1fr;
    }

    .ir-scale {
        margin-left: 0;
        font-size: 11px;
    }

    .ir-seo-card h2,
    .ir-section h2 {
        font-size: 24px;
    }
}
