.secureMatter {
    background: #fff;
}

.secureMatter .sm-page {
    max-width: 1200px;
    padding-top: 170px;
    padding-bottom: 120px;
}

.secureMatter .sm-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.secureMatter .sm-hero-content {
    flex: 1 1 0;
    min-width: 0;
    max-width: 758px;
}

.secureMatter .sm-hero-visual {
    flex: 0 1 420px;
    max-width: 420px;
}

.secureMatter .sm-hero-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.secureMatter .sm-hashtag {
    margin: 0;
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.48px;
}

.secureMatter .sm-hero-copy {
    margin-top: 17px;
    max-width: 100%;
}

.secureMatter .sm-hero-copy h1 {
    margin: 0 0 17px;
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.72px;
}

.secureMatter .sm-hero-copy p {
    margin: 0 0 17px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.36px;
    opacity: 0.8;
}

.secureMatter .sm-hero-copy p:last-child {
    margin-bottom: 0;
}

.secureMatter .sm-blog-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 27px;
    padding: 16px 30px;
    border: none;
    border-radius: 80px;
    background: #4a21ef;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.36px;
    text-decoration: none;
}

.secureMatter .sm-blog-cta:hover {
    color: #fff;
    opacity: 0.92;
}

.secureMatter .sm-section {
    margin-top: 80px;
}

.secureMatter .sm-verify {
    margin-top: 80px;
    padding: 40px;
    border: 1px solid #dcdcdc;
    border-radius: 24px;
    background: #f5f5f5;
}

.secureMatter .sm-verify h2,
.secureMatter .sm-report-intro h2,
.secureMatter .sm-faq > h2,
.secureMatter .sm-contact h2 {
    margin: 0;
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.72px;
}

.secureMatter .sm-form {
    margin-top: 30px;
}

.secureMatter .sm-form-row {
    display: flex;
    gap: 35px;
}

.secureMatter .sm-field {
    flex: 1 1 0;
    min-width: 0;
    margin-bottom: 0;
}

.secureMatter .sm-field label {
    display: block;
    margin-bottom: 20px;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.48px;
}

.secureMatter .sm-field input,
.secureMatter .sm-country-wrap .my-select .my-input {
    display: block;
    width: 100%;
    height: 60px;
    padding: 14px 20px;
    border: 1px solid #757575;
    border-radius: 12px;
    background: #fff;
    color: #000;
    font-size: 20px;
    letter-spacing: -0.4px;
    outline: none;
}

.secureMatter .sm-field input::placeholder {
    color: #aaa;
}

.secureMatter .sm-field input:focus {
    border-color: #4a21ef;
}

.secureMatter .sm-field-hint {
    margin: 10px 0 0;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.28px;
}

.secureMatter .sm-field .error-message {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.secureMatter .sm-field.form-error input,
.secureMatter .sm-field.form-error .my-select .my-input {
    border-color: #e53e3e;
}

.secureMatter .sm-field.form-error .error-message {
    display: block;
}

.secureMatter .sm-country-wrap {
    position: relative;
    width: 100%;
}

.secureMatter .sm-country-wrap #input-placeholder {
    margin: 0;
}

.secureMatter .sm-country-wrap .my-select {
    width: 100%;
    min-height: 60px;
}
.secureMatter .sm-country-wrap .my-select .inputImg{
    right: 20px;
}
.secureMatter .sm-country-wrap .my-select .list-box-content .search-box .search-box-input .search-input {
    padding: 0px;
    height: auto;
}
.secureMatter .sm-country-wrap .my-select .my-input {
    cursor: pointer;
}

.secureMatter .sm-country-wrap .my-select .list-box {
    z-index: 20;
}

.secureMatter .sm-verify-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 187px;
    height: 60px;
    margin: 30px auto 0;
    padding: 0 60px;
    border: none;
    border-radius: 68px;
    background: #4a21ef;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.48px;
    cursor: pointer;
}

.secureMatter .sm-verify-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.secureMatter .sm-verify-btn.is-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.secureMatter .sm-verify-btn.is-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: sm-verify-spin 0.7s linear infinite;
}

@keyframes sm-verify-spin {
    to {
        transform: rotate(360deg);
    }
}

.secureMatter .sm-result {
    position: relative;
    margin-top: 30px;
    padding: 60px 30px 30px;
    border-radius: 18px;
}

.secureMatter .sm-result-badge {
    position: absolute;
    left: -1px;
    top: -1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    border-radius: 18px 0 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.36px;
}

.secureMatter .sm-result h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.48px;
}

.secureMatter .sm-result p {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.36px;
}

.secureMatter .sm-result p:last-child {
    margin-bottom: 0;
}

.secureMatter .sm-result-success {
    background: #f0fcf4;
    border: 1px solid #9bd6be;
}

.secureMatter .sm-result-success .sm-result-badge {
    background: #21643a;
}

.secureMatter .sm-result-success h3,
.secureMatter .sm-result-success p {
    color: #21643a;
}

.secureMatter .sm-result-affected {
    background: #fff2f2;
    border: 1px solid #f1d8dd;
}

.secureMatter .sm-result-affected .sm-result-badge {
    background: #bf0003;
}

.secureMatter .sm-result-affected h3,
.secureMatter .sm-result-affected p {
    color: #bf0003;
}

.secureMatter .sm-result-after {
    background: #f0fcf4;
    border: 1px solid #9bd6be;
}

.secureMatter .sm-result-after .sm-result-badge {
    background: #1E81B6;
}

.secureMatter .sm-result-after h3,
.secureMatter .sm-result-after p {
    color: #1E81B6;
}

.secureMatter .sm-clean-form {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
}

.secureMatter .sm-clean-field {
    flex: 1;
    min-width: 0;
}

.secureMatter .sm-clean-field input {
    display: block;
    width: 100%;
    height: 72px;
    padding: 0 20px;
    border: 1px solid #c4c4c4;
    border-radius: 12px;
    background: #fff;
    color: #0d0b33;
    font-size: 18px;
    line-height: 1.4;
    outline: none;
}

.secureMatter .sm-clean-field input::placeholder {
    color: #9ca3af;
}

.secureMatter .sm-clean-field input:focus {
    border-color: #4a21ef;
}

.secureMatter .sm-clean-field .error-message {
    display: none;
    margin-top: 8px;
    color: #e53e3e;
    font-size: 14px;
    line-height: 1.4;
}

.secureMatter .sm-clean-field.form-error input {
    border-color: #e53e3e;
}

.secureMatter .sm-clean-field.form-error .error-message {
    display: block;
}

.secureMatter .sm-delete-btn {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    height: 72px;
    padding: 0 40px;
    border: none;
    border-radius: 68px;
    background: #4a21ef;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.4px;
    white-space: nowrap;
    cursor: pointer;
}

.secureMatter .sm-delete-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.secureMatter .sm-report-email-grid {
    display: flex;
    flex-decoration: row;
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: auto;
    gap: 30px;
    margin-top: 20px;
}
.secureMatter .sm-report-email-grid .sm-report-email-col {
    border: 1px solid #DCDCDC;
    padding: 20px;
    border-radius: 18px;
}
.secureMatter .sm-report-email-grid .sm-report-email-col.sm-report-email-col-left {
    max-width:570px;
}
.secureMatter .sm-report-email-col > p:first-child {
    margin-top: 0;
}

.secureMatter .sm-report-url-form {
    margin-top: 20px;
}

.secureMatter .sm-report-url-title {
    margin: 0 0 16px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.36px;
    opacity: 1;
}

.secureMatter .sm-report-card .sm-report-url-title,
.secureMatter .sm-report-card .sm-report-hint {
    opacity: 1;
}

.secureMatter .sm-report-card .sm-report-hint {
    margin: 10px 0 0;
    color: #393939;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.32px;
}

.secureMatter .sm-report-field input[type="url"] {
    display: block;
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border: 1px solid #757575;
    border-radius: 12px;
    background: #fff;
    color: #000;
    font-size: 18px;
    letter-spacing: -0.36px;
    outline: none;
}

.secureMatter .sm-report-field input[type="url"]::placeholder {
    color: #aaa;
}

.secureMatter .sm-report-field input[type="url"]:focus {
    border-color: #4a21ef;
}

.secureMatter .sm-report-field .error-message {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.secureMatter .sm-report-field.form-error input[type="url"] {
    border-color: #e53e3e;
}

.secureMatter .sm-report-field.form-error .error-message {
    display: block;
}

.secureMatter .sm-report-upload-form {
    margin-top: 24px;
}

.secureMatter .sm-report-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.secureMatter .sm-report-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 52px;
    padding: 0 36px;
    border-radius: 68px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.36px;
    cursor: pointer;
}

.secureMatter .sm-report-btn-primary {
    border: none;
    background: #4a21ef;
    color: #fff;
}

.secureMatter .sm-report-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.secureMatter .sm-report-btn-outline {
    border: 1.5px solid #4a21ef;
    background: transparent;
    color: #4a21ef;
}

.secureMatter .sm-report-url-form .sm-report-btn {
    margin-top: 38px;
}

.secureMatter .sm-upload-progress {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 20px;
    padding: 20px;
    background: #fafafa;
}

.secureMatter .sm-upload-progress-main {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.secureMatter .sm-upload-file-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 30px;
}

.secureMatter .sm-upload-ext {
    flex: 0 0 auto;
    color: #000;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.36px;
}

.secureMatter .sm-upload-bar {
    flex: 1 1 auto;
    height: 5px;
    min-width: 0;
    border-radius: 18px;
    background: #e6e6e6;
    overflow: hidden;
}

.secureMatter .sm-upload-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 18px;
    background: #4a21ef;
    transition: width 0.2s ease;
}

.secureMatter .sm-upload-pct {
    flex: 0 0 auto;
    color: #000;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.36px;
}

.secureMatter .sm-upload-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}

.secureMatter .sm-upload-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
    background: #fff;
    color: #0d0b33;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.secureMatter .sm-report-intro p {
    margin: 10px 0 0;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.36px;
    opacity: 0.8;
}

.secureMatter .sm-report-card {
    margin-top: 30px;
    padding: 40px;
    border: 1px solid #dcdcdc;
    border-radius: 24px;
    background: #fafafa;
}

.secureMatter .sm-report-card h3 {
    margin: 0 0 10px;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.48px;
}

.secureMatter .sm-report-card p {
    margin: 0 0 10px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.36px;
    opacity: 0.8;
}

.secureMatter .sm-report-card p:last-child {
    margin-bottom: 0;
}

.secureMatter .sm-report-card a {
    color: #4a21ef;
    text-decoration: underline;
}

.secureMatter .sm-report-visual {
    margin-top: 16px;
    max-width: 100%;
}

.secureMatter .sm-report-visual img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
}

.secureMatter .sm-faq-list {
    margin-top: 40px;
    border-top: 1px solid #e6e6e6;
}

.secureMatter .sm-faq-item {
    border-bottom: 1px solid #e6e6e6;
    padding: 30px 0;
}

.secureMatter .sm-faq-q {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    color: #000;
    text-align: left;
    cursor: pointer;
}

.secureMatter .sm-faq-q:active {
    background: transparent !important;
    border-color: transparent !important;
}

.secureMatter .sm-faq-q span:first-child {
    flex: 1 1 auto;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.48px;
}

.secureMatter .sm-faq-icon {
    flex: 0 0 auto;
    width: 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.secureMatter .sm-faq-a {
    margin-top: 20px;
}

.secureMatter .sm-faq-a p {
    margin: 0 0 12px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.36px;
}

.secureMatter .sm-faq-a p:last-child {
    margin-bottom: 0;
}

.secureMatter .sm-faq-a a {
    color: #4a21ef;
    text-decoration: underline;
}

.secureMatter .sm-contact h2 {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -2%;
}

.secureMatter .sm-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    height: 60px;
    padding: 0 30px;
    border-radius: 80px;
    background: #4a21ef;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -2%;
    text-decoration: none;
}

.secureMatter .sm-contact-btn:hover {
    color: #fff;
    opacity: 0.92;
}

.secureMatter .custom-alert-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.secureMatter .custom-alert-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.secureMatter .custom-alert-message {
    color: #2d3748;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.secureMatter .custom-alert-button {
    background: #4a21ef;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.secureMatter .custom-alert-button:hover {
    background: #1a1548;
}

.secureMatter #customAlertOk:hover {
    background: #4a21ef;
}

.secureMatter .sm-order-not-found-box {
    position: relative;
    max-width: 500px;
    padding: 60px 20px;
}

.secureMatter .sm-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    color: #4a5568;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.secureMatter .sm-modal-close:hover {
    color: #1a202c;
}

.secureMatter .sm-order-not-found-icon {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
}

.secureMatter .sm-order-not-found-msg {
    margin: 0;
    color: #1a202c;
    font-size: 16px;
    line-height: 1.6;
}

.secureMatter .sm-remove-confirm-box {
    position: relative;
    max-width: 500px;
    padding: 40px 20px;
}

.secureMatter .sm-remove-confirm-icon {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
}

.secureMatter .sm-remove-confirm-msg {
    margin: 0 0 16px;
    color: #1a202c;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}

.secureMatter .sm-remove-confirm-msg:last-of-type {
    margin-bottom: 28px;
}

.secureMatter .sm-remove-confirm-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.secureMatter .sm-remove-confirm-proceed,
.secureMatter .sm-remove-confirm-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    padding: 0 24px;
    border-radius: 68px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
}

.secureMatter .sm-remove-confirm-proceed {
    border: 1.5px solid #4a21ef;
    background: #fff;
    color: #4a21ef;
}

.secureMatter .sm-remove-confirm-proceed:hover {
    background: rgba(74, 33, 239, 0.04);
}

.secureMatter .sm-remove-confirm-proceed:disabled,
.secureMatter .sm-remove-confirm-cancel:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.secureMatter .sm-remove-confirm-cancel {
    border: none;
    background: #4a21ef;
    color: #fff;
}

.secureMatter .sm-remove-confirm-cancel:hover {
    background: #3d1bc9;
}

.secureMatter .sm-clean-success-box {
    position: relative;
    max-width: 500px;
    padding: 40px 24px;
}

.secureMatter .sm-clean-success-icon {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
}

.secureMatter .sm-clean-success-title {
    margin: 0 0 16px;
    color: #1a202c;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.secureMatter .sm-clean-success-msg {
    margin: 0;
    color: #1a202c;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.secureMatter .sm-already-processing-box {
    position: relative;
    max-width: 500px;
    padding: 40px 24px;
}

.secureMatter .sm-already-processing-icon {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
}

.secureMatter .sm-already-processing-msg {
    margin: 0;
    color: #1a202c;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.secureMatter .sm-email-mismatch-box {
    position: relative;
    max-width: 500px;
    padding: 40px 24px;
}

.secureMatter .sm-email-mismatch-icon {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
}

.secureMatter .sm-email-mismatch-msg {
    margin: 0;
    color: #1a202c;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.secureMatter .sm-not-shipped-box {
    position: relative;
    max-width: 500px;
    padding: 40px 24px;
}

.secureMatter .sm-not-shipped-icon {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
}

.secureMatter .sm-not-shipped-msg {
    margin: 0;
    color: #1a202c;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 991px) {
    .secureMatter .sm-page {
        padding-top: 94px;
        padding-bottom: 50px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .secureMatter .sm-hero {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .secureMatter .sm-hero-content {
        max-width: 100%;
    }

    .secureMatter .sm-hero-visual {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .secureMatter .sm-hashtag {
        font-size: 16px;
        letter-spacing: -0.32px;
    }

    .secureMatter .sm-hero-copy {
        max-width: 100%;
        margin-top: 15px;
    }

    .secureMatter .sm-hero-copy h1 {
        font-size: 24px;
        line-height: 1.2;
        letter-spacing: -0.48px;
        margin-bottom: 14px;
    }

    .secureMatter .sm-hero-copy p {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .secureMatter .sm-blog-cta {
        display: flex;
        width: 100%;
        margin-top: 13px;
        padding: 14px 16px;
        font-size: 16px;
        text-align: center;
        white-space: normal;
    }

    .secureMatter .sm-section {
        margin-top: 50px;
    }

    .secureMatter .sm-verify {
        margin-top: 40px;
        padding: 17px;
        border-radius: 18px;
    }

    .secureMatter .sm-verify h2,
    .secureMatter .sm-report-intro h2,
    .secureMatter .sm-faq > h2 {
        font-size: 22px;
        line-height: 1.2;
        letter-spacing: -0.44px;
    }

    .secureMatter .sm-form {
        margin-top: 20px;
    }

    .secureMatter .sm-form-row {
        flex-direction: column;
        gap: 20px;
    }
    .secureMatter .sm-clean-field {
        width: 100%;
    }
    .secureMatter .sm-field label {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .secureMatter .sm-field input,
    .secureMatter .sm-country-wrap .my-select .my-input {
        height: 48px;
        padding: 0 13px;
        font-size: 16px;
    }
    .secureMatter .sm-country-wrap .my-select .list-box-content .search-box .search-box-input .search-input {
        padding: 0px 4px;
    }
    .secureMatter .sm-field-hint {
        font-size: 12px;
    }

    .secureMatter .sm-verify-btn {
        min-width: 170px;
        height: 56px;
        margin-top: 20px;
        padding: 0 24px;
        font-size: 16px;
    }

    .secureMatter .sm-result {
        margin-top: 20px;
        padding: 48px 13px 13px;
        border-radius: 12px;
    }

    .secureMatter .sm-result-badge {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 12px 0 0 0;
    }

    .secureMatter .sm-result h3 {
        font-size: 18px;
        line-height: 1.2;
    }
    .secureMatter .sm-report-email-grid .sm-report-email-col {
        border: none;
        padding: 0px;
    }
    .secureMatter .sm-report-email-grid .sm-report-email-col.sm-report-email-col-left {
        max-width: 100%;
    }
    .secureMatter .sm-result p {
        font-size: 16px;
        line-height: 1.4;
    }

    .secureMatter .sm-clean-form {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .secureMatter .sm-clean-field input {
        height: 48px;
        padding: 0 14px;
        font-size: 16px;
        border-radius: 10px;
    }

    .secureMatter .sm-delete-btn {
        display: flex;
        width: 100%;
        height: 60px;
        padding: 0 16px;
        font-size: 14px;
    }

    .secureMatter .sm-report-email-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 16px;
    }

    .secureMatter .sm-report-field input[type="url"] {
        height: 48px;
        padding: 0 13px;
        font-size: 16px;
    }

    .secureMatter .sm-report-hint,
    .secureMatter .sm-report-url-title {
        font-size: 14px;
    }
    .secureMatter .sm-report-visual img {
        max-width: 100%;
    }
    .secureMatter .sm-report-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 12px;
    }

    .secureMatter .sm-report-btn {
        flex: 1;
        min-width: 0;
        height: 52px;
        padding: 0 20px;
        font-size: 16px;
    }

    .secureMatter .sm-report-url-form .sm-report-btn {
        margin-top: 16px;
    }

    .secureMatter .sm-upload-progress {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
    }

    .secureMatter .sm-upload-progress-main {
        gap: 8px;
    }

    .secureMatter .sm-upload-ext,
    .secureMatter .sm-upload-pct {
        font-size: 14px;
    }

    .secureMatter .sm-upload-actions {
        justify-content: flex-end;
    }

    .secureMatter .sm-report-card {
        margin-top: 20px;
        padding: 12px;
        border-radius: 12px;
    }

    .secureMatter .sm-report-card h3 {
        font-size: 18px;
    }

    .secureMatter .sm-report-card p,
    .secureMatter .sm-report-intro p {
        font-size: 16px;
    }

    .secureMatter .sm-faq-item {
        padding: 20px 0;
    }

    .secureMatter .sm-faq-q {
        gap: 12px;
    }

    .secureMatter .sm-faq-q span:first-child {
        font-size: 16px;
        line-height: 1.4;
    }

    .secureMatter .sm-faq-icon {
        font-size: 18px;
    }

    .secureMatter .sm-faq-a p {
        font-size: 14px;
    }

    .secureMatter .sm-contact h2 {
        font-size: 16px;
        line-height: 1.2;
        letter-spacing: -2%;
    }

    .secureMatter .sm-contact-btn {
        /* width: 100%; */
        font-size: 18px;
        letter-spacing: -2%;
        height: 48px;
    }
}

/* ----------------------------------------------------------------- */
.one-wallet-footer {
    background: linear-gradient(
        109.75deg,
        rgba(117, 84, 252, 0) 35.1%,
        rgba(117, 84, 252, 0.2) 99.39%
      ),
      linear-gradient(162.15deg, rgba(13, 11, 51, 0) 1.61%, #0d0b33 71.13%),
      #4a21ef;
    background-position: center;
}
.one-wallet-footer-main {
    background: url("/assets/img/crypto-stripe1.svg") no-repeat,
        url("../img/one-wallet-footer-bg.svg") no-repeat,
        url("../img/crypto-stripe1.svg") no-repeat;
    background-position: top left, bottom, bottom right -26%;
    background-size: auto;
    animation: starFooter 5s ease-in infinite;
}
@media (min-width: 991px) {
    @keyframes starFooter {
        0% {
        background: url("../img/one-wallet-footer-bg.svg") no-repeat,
            url("/assets/img/crypto-stripe1.svg") no-repeat,
            url("../img/crypto-stripe1.svg") no-repeat;
        background-position: bottom, top left, bottom right -26%, center;
        background-size: auto;
        }
        50% {
        background: url("../img/one-wallet-footer-bg2.svg") no-repeat,
            url("/assets/img/crypto-stripe1.svg") no-repeat,
            url("../img/crypto-stripe1.svg") no-repeat;
        background-position: bottom, top left, bottom right -26%, center;
        background-size: auto;
        }
        100% {
        background: url("../img/one-wallet-footer-bg.svg") no-repeat,
            url("/assets/img/crypto-stripe1.svg") no-repeat,
            url("../img/crypto-stripe1.svg") no-repeat;
        background-position: bottom, top left, bottom right -26%, center;
        background-size: auto;
        }
    }
}
#one-wallet {
    padding-top: 132px;
}
#one-wallet .one-wallet {
    text-align: center;
    max-width: 800px;
    margin: 48px auto;
}
#one-wallet .one-wallet .sfp-logo {
    margin-bottom: 50px;
}
#one-wallet .one-wallet .sfp-logo .logo-box {
    animation-duration: 4s;
    animation-iteration-count: infinite;
}
#one-wallet .one-wallet .title {
    margin-bottom: 48px;
}
#one-wallet .one-wallet .title h3 {
    color: #ffffff;
    font-weight: 1000;
    font-size: 80px;
    line-height: 1;
    text-align: center;
}
#one-wallet .one-wallet .download .set-off-btn {
    animation-duration: 4s;
    animation-iteration-count: infinite;
    background: linear-gradient(
      183.08deg,
      rgba(191, 255, 228, 0.2) 43.82%,
      rgba(191, 255, 228, 0) 111.17%
    );
    border-radius: 100px;
    padding: 10px;
}
#one-wallet .one-wallet .download .downloads-btn {
    animation-duration: 4s;
    animation-iteration-count: infinite;
    color: #0d0b33;
    font-size: 18px;
    padding: 16px 24px;
    border-radius: 100px;
    background-color: #79efbd;
    line-height: 1.6;
    border: none;
}
@media (max-width: 991px) {
    .one-wallet-footer {
      background: linear-gradient(
          109.75deg,
          rgba(117, 84, 252, 0) 35.1%,
          rgba(117, 84, 252, 0.2) 99.39%
        ),
        linear-gradient(162.15deg, rgba(13, 11, 51, 0) 1.61%, #0d0b33 71.13%),
        #4a21ef;
    }
    .one-wallet-footer-main {
      background: url("/assets/img/crypto-stripe1.svg") no-repeat,
        url("../img/one-wallet-footer-bg-m.svg") no-repeat,
        url("../img/crypto-stripe1.svg") no-repeat;
      background-position: top left, bottom, bottom right 320%, center;
      background-size: auto;
    }
    #one-wallet .one-wallet {
      max-width: 100%;
      padding: 0px 16px;
    }
    #one-wallet .one-wallet .title h3 {
      font-size: 48px;
    }
    #one-wallet .one-wallet .download .downloads-btn {
      font-weight: 500;
    }
}
