.hero {
    display: flex;
    background-color: #191d20;
    position: relative;
    padding: 70px 0 0 0;
}

.hero .hero-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.hero .hero-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.hero .hero-wrap h1 {
    font-weight: 900;
    font-size: clamp(30px, calc(2vw + 14px), 60px);
    text-align: center;
    margin-bottom: 20px;
}

.hero .hero-wrap h1 span {
    display: block;
    color: #f79e1b;
    font-size: clamp(36px, calc(2.8vw + 20px), 88px);
}

.hero .hero-wrap .sub-text {
    gap: 12px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .hero-wrap .left h2 {
    font-size: 16px;
    font-weight: 900;
    flex: 1;
}

.hero .hero-wrap .left .crypto {
    background-color: #000;
    border-radius: 9999px;
    padding: 6px 15px 6px 6px;
    display: flex;
    gap: 4px;
}

.hero .hero-wrap .left p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.hero .hero-wrap .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    margin-bottom: 14px;
    justify-content: center;
}

.hero .hero-wrap .rating img {
    max-width: 100px;
}

.hero .hero-wrap .rating span {
    font-size: 13px;
    line-height: 15px;
    display: block;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.hero .hero-wrap .left {
    padding: 14px 21px 0 21px;
}

.hero .hero-wrap .right {
    overflow: hidden;
    margin: 0 auto;
    padding-top: 30px;
    width: 100%;
}

.hero .hero-wrap .right .form-bg {
    position: absolute;
    z-index: 0;
    left: 50%;
    transform: translateX(-50%);
    top: -35px;
    width: 100%;
}

.hero .hero-wrap .right form .input-wrapper {
    padding-top: 18px;
    position: relative;
    z-index: 1;
    width: 70%;
    margin: 0 auto;
}

.hero .hero-wrap .right .form-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.hero .hero-wrap .form-logo {
    width: 34px;
    height: 41px;
}

.hero .hero-wrap .form-title {
    font-size: 24px;
    font-weight: 900;
    padding: 0;
    margin: 0;
}

.hero .hero-wrap form {
    position: relative;
}

.hero .hero-wrap form input:not(.iti__search-input) {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 16px auto;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 0 6px 24px rgba(0, 0, 0, 0.18);
}

.hero .hero-wrap form .cta {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    line-height: 20px;
    margin-top: 18px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    background: #F79E1B;
    border: 1px solid #F79E1B;
    transition: all 0.5s ease;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.hero .hero-wrap form .cer {
    margin: 0 auto;
    display: block;
    margin-top: 20px;
}

.hero .hero-wrap .hero-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.hero .hero-wrap .action-btn {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #9ca3af;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    transition: color .2s ease, border-color .2s ease;
}

.hero .hero-wrap .action-btn img {
    filter: grayscale(100%) brightness(0.4);
    transition: filter .2s ease;
}

.hero .hero-wrap .action-btn:hover {
    color: #2563eb;
    border-color: #2563eb;
}

.hero .hero-wrap .action-btn:hover img {
    filter: none;
}

@media (min-width: 425px) {
    .hero .hero-wrap h1 {
        font-size: 40px;
    }
    .hero .hero-wrap h1 span {
        font-size: 50px;
    }
    .hero .hero-wrap .right {
        margin: 0 auto;
        max-width: 500px;
    }
    .hero .hero-wrap .right .form-bg {
        width: 480px;
    }
    .hero .hero-wrap .left h2 {
        flex: unset;
    }
    .hero .hero-wrap form .cta {
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }
}

@media (min-width: 525px) and (max-width: 768px) {
    .hero .hero-wrap .rating span {
        font-size: 21px;
    }
}

.techno .container {
    padding: 30px 20px;
}

.techno h2 {
    margin: 0 0 20px 0;
}

.techno .techno-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    background-position: center;
    background-size: cover;
    border-radius: 12px;
    height: 260px;
}

.techno p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #546880;
    margin: 0 0 20px 0;
}

.techno ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.techno ul .techno-list-item {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 14px;
    padding: 6px;
    border-top: 1px solid #F5F5F5;
}

.techno ul li:last-of-type {
    border-bottom: 1px solid #F5F5F5;
}

.techno ul img {
    width: 40px;
    height: 40px;
}

.techno ul h3 {
    font-size: 12px;
    line-height: 28px;
    margin: 0;
    color: #191D20;
}

.techno a {
    background: #F79E1B;
    color: #FFFFFF;
    text-decoration: none;
    width: 100%;
    text-align: center;
    display: flex;
    padding: 4px 61px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 900;
    justify-content: center;
}

.between {
    margin-bottom: -1px;
    margin-top: -1px;
}

.between .between-container {
    padding: 30px 20px;
}

.between .step-title {
    margin: 0 0 10px 0;
}

.between .text-left {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #8E8E93;
    margin: 0 0 20px 0;
}

.between .text-left .text-left {
    margin: 0;
}

.between .between-text {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #546880;
}

.between .right a {
    background: #F79E1B;
    font-size: 16px;
    line-height: 24px;
    font-weight: 900;
    padding: 12px 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    margin: 20px 0 0 0;
    border: 1px solid #F79E1B;
    transition: all 0.5s ease;
    max-width: 100%;
}

.between .right a:hover {
    color: #F79E1B;
    background: transparent;
    border: 1px solid #F79E1B;
}

.white-text p,
.white-text h2,
.white-text h3 {
    color: #FFFFFF;
}

.line-container {
    background: #1C85FB;
    color: #FFFFFF;
    padding: 24px 30px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 900;
    text-align: center;
}

.line {
    background: #1C85FB;
}

.text-tip {
    width: 100%;
    background: #1C85FB;
    border-radius: 12px;
    font-weight: 900;
    font-size: 20px;
    line-height: 28px;
    padding: 28px;
    text-align: center;
}

.tip-container {
    padding: 28px 16px;
}

.testimonials {
    padding: 20px 0;
    background: #fff;
}

.testimonials .container {
    padding: 0 20px;
}

.testimonials.about-st .step-head.container {
    align-items: flex-start;
    padding: 0 20px;
    margin-bottom: 0;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid gainsboro;
    border-radius: 16px;
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

.info {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0 0 10px 0;
}

.testimonial-content,
.testimonial-content-reverse {
    flex: 1;
    position: relative;
    padding: 10px;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 900;
    color: #2D3748;
    margin: 0;
    line-height: 28px;
}

.testimonial-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.testimonial-text {
    padding: 0 0 0 20px;
}

.testimonial-text,
.testimonial-text p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #546880;
    margin: 0;
}

.testimonial-photo,
.testimonial-photo-reverse {
    display: block;
    margin-left: auto;
}

.testimonial-photo-reverse {
    margin-left: -40px;
    margin-top: -40px;
    transform: translateY(-40px);
}

.testimonial-photo,
.testimonial-photo-reverse {
    width: 100%;
    transform: none;
    height: auto;
    border-radius: 0 0 12px 12px;
    margin: 0 0 10px 0;
}

.testimonial-photo img,
.testimonial-photo-reverse img {
    width: 100%;
}

.quote-icon {
    height: 40px;
}

.testimonial-content,
.testimonial-content-reverse {
    order: 2;
    text-align: start;
}

@media (max-width: 425px) {
    .testimonial-photo,
    .testimonial-photo-reverse {
        width: 115%;
    }
    .testimonial-photo img,
    .testimonial-photo-reverse img {
        width: 100%;
    }
}

.market {
    padding: 0 0 90px 0;
    overflow: hidden;
}

.market .market-panel {
    border-radius: 12px;
    padding: 32px 24px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 16px;
}

.market .coin-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.market .coin-row {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 5px 20px;
    max-width: 300px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.market .coin-icon {
    width: 36px;
    height: 36px;
}

.market .coin-meta {
    color: #cbd5e1;
}

.market .coin-name {
    font-weight: 900;
    color: #fff;
    font-size: 18px;
}

.market .coin-sub {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

.market .coin-price {
    margin-left: auto;
    font-weight: 900;
    color: #69d219;
    font-size: 18px;
}

.market .phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    order: 3;
    transform: translateY(30px);
}

.market .phone-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    opacity: .2;
    left: -50%;
    top: -150%;
    background: radial-gradient(50% 50% at 50% 50%, #533BE0 0%, #fff0 100%);
    filter: blur(2px);
}

.market .phone-img {
    position: relative;
    width: 180px;
    max-width: 100%;
    transform: scale(1.6);
}

@media (max-width: 768px) {
    .market .market-panel {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.table {
    color: #546880;
    background: #F6F6F6;
}

.table .container {
    padding: 30px 20px;
}

.table .table-wrapper-mob,
.table .table-wrapper-desk {
    border-radius: 12px 12px 12px 0;
    overflow: hidden;
    border: 1px solid #0088FF;
    margin: 0 0 10px 0;
    background: #FFFFFF;
    position: relative;
    z-index: 2;
}

.table .table-wrapper-desk,
.table .table-wrapper-desk::before {
    display: none;
}

.table h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 900;
    margin: 0 0 20px 0;
}

.table .mobile-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    margin: 0;
}

.table .mobile-table td {
    width: 50%;
    padding: 20px 10px;
    border: 1px solid #0088FF;
}

.table .mobile-table .left-row {
    font-size: 14px;
    line-height: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.table .mobile-table .right-row {
    font-size: 14px;
    line-height: 20px;
}

.table .mobile-table tr:first-child th,
.table .mobile-table tr:first-child td {
    border-top: none;
}

.table .mobile-table tr:last-child th,
.table .mobile-table tr:last-child td {
    border-bottom: none;
}

.table .mobile-table th:first-child,
.table .mobile-table td:first-child {
    border-left: none;
}

.table .mobile-table th:last-child,
.table .mobile-table td:last-child {
    border-right: none;
}

.table .table-wrapper-mob::before,
.table .table-wrapper-desk::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: .2;
    left: 0;
    top: 0;
    background: radial-gradient(50% 50% at 50% 50%, #56baff 0%, #fff0 70%);
    filter: blur(2px);
    z-index: 1;
}

.table-style2 .table-wrapper-mob,
.table-style2 .table-wrapper-desk {
    background: #FFFFFFF5;
}

.table-style2 .mobile-table td {
    border: 1px solid #F0B90B;
}

section.reviews .container {
    padding: 30px 20px;
}

section.reviews hr {
    margin: 0;
    padding: 0;
    width: 100%;
}

section.reviews .reviews-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}

section.reviews .review {
    height: -webkit-fill-available;
    height: auto;
    background-color: #f6f6f6;
    border-radius: 8px;
    padding: 28px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.reviews .review .stars {
    width: 95px;
}

section.reviews .review hr {
    opacity: .2;
    margin: auto 0 0 0;
}

section.reviews .review h3 {
    font-size: 18px;
    font-weight: 900;
    color: #0d1210;
    margin-bottom: 10px;
}

section.reviews .review span {
    background: #1c85fb;
    border-radius: 4px;
    padding: 4px 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

section.reviews .review .info {
    display: flex;
    align-items: center;
}

section.reviews .review p {
    font-size: 14px;
    height: inherit;
    font-weight: 400;
    line-height: 20px;
    color: #546880;
    margin: 0;
}

.bg-text {
    position: relative;
    padding: 0 0 330px 0;
}

.bg-text .container {
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(42, 44, 52, 0) 0%, #2A2C34 10%, #2A2C34 100%);
}

.bg-text .container h2 {
    color: #F0B90B;
    font-size: 20px;
    line-height: 28px;
    font-weight: 900;
    margin: 0 0 30px 0;
}

.bg-text .container .bg-p {
    font-size: 16px;
    line-height: 24px;
    color: #E5E3DF;
}

.bg-text .container p {
    margin: 0;
}

.bg-text .container .button {
    font-weight: 900;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 20px;
    padding: 10px 24px;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    background: #F79E1B;
    border-radius: 6px;
    margin: 30px auto 0 auto;
    border: 1px solid #F79E1B;
    transition: all 0.5s ease;
}

.bg-text .container .button:hover {
    color: #F79E1B;
    background: transparent;
    border: 1px solid #F79E1B;
}

.faq-section {
    background: #fff;
}

.faq-section .container {
    padding: 30px 20px;
}

.faq-item {
    margin: 0 0 6px 0;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-bottom: none;
    border-radius: 12px;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    gap: 8px;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-number {
    font-weight: 900;
    font-size: 24px;
    color: #0d1210;
    margin-right: 16px;
    margin-left: 0;
    min-width: 25px;
}

.faq-text {
    flex: 1;
    font-size: 16px;
    font-weight: 900;
    color: #546880;
    line-height: 28px;
}

.faq-arrow {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    transition: transform 0.3s ease;
    margin-left: 12px;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 20px 30px 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    color: #4a5568;
}

.comment.gray {
    background-color: #f6f6f6;
}

.comment .info h3 {
    color: #0d1210;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.comment .info {
    width: 100%;
    max-width: 450px;
}

.comment .info a {
    border-radius: 4px;
    background-color: #fff0;
    border: 1px solid #546880;
    color: #546880;
    text-decoration: unset;
    font-size: 14px;
    font-weight: 400;
    padding: 5px 5px;
    display: flex;
    align-items: center;
    height: 30px;
    gap: 5px;
    transition: all 0.3s ease;
}

.comment .info .actions .action-btn:last-child img {
    height: 15px;
    object-fit: cover;
    object-position: top;
}

.comment .info .actions .action-btn img {
    filter: grayscale(100%) brightness(0.4);
    transition: filter .2s ease;
}

.comment .info .actions .action-btn:last-child:hover img {
    filter: unset;
    object-position: bottom;
}

.comment .info a:hover {
    background-color: rgba(84, 104, 128, 0.1);
    border-color: #1c85fb;
    color: #1c85fb;
}

.comment .actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.actions a img {
    width: 15px;
}

.comment p {
    color: #546880;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.comments .comment-stars {
    height: 20px;
}

.comment .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 27px;
}

.trust-section__content h2 {
    color: #0d1210;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 28px;
}

.trust-section__content p b {
    font-weight: 400;
}

.trust-section__content p {
    color: #546880;
    font-size: 18px;
    line-height: 40px;
    font-weight: 300;
    margin: 0;
}

.trust-section .container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: column;
    padding: 0 16px 20px 16px;
}

.trust-section__content {
    padding: 0 34px;
}

.trust-section {
    overflow: visible;
    background-color: #f6f6f6;
}

.trust-section__image {
    margin-left: 0;
    width: 110%;
}

.trust-section__image img {
    display: block;
    width: 100%;
    height: auto;
}

.trust-section {
    flex: 1;
}

.bottom {
    background: #E6E6E6;
    padding: 30px 10px;
}

.bottom .container {
    background: #FFFFFF;
    border-radius: 12px;
    position: relative;
    padding: 14px 16px;
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.bottom .expanded {
    max-height: 10000px;
}

.bottom h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 900;
    margin: 0 0 10px 0;
    color: #0D1210;
}

.bottom p {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    color: #546880;
}

.bottom button {
    display: flex;
    align-items: center;
    color: #FF9500;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    font-weight: 600;
    position: absolute;
    border: none;
    margin-left: auto;
    float: right;
    bottom: 0;
    right: 0;
    z-index: 3;
    width: 100%;
    background: #FFFFFF;
    padding: 0 15px 15px 0;
    justify-content: flex-end;
}

.bottom .bottom-button::after {
    content: "";
    transition: transform .2s ease;
}

.bottom .expanded button {
    float: right;
    position: relative;
    padding: 0;
    margin-top: 10px;
}

.bottom .expanded .bottom-button::after {
    bottom: unset;
}

.bottom h1,
.bottom h2,
.bottom h3,
.bottom h4,
.bottom h5,
.bottom h6 {
    color: #0D1210;
    font-weight: 900;
}

.bottom li {
    color: #546880;
    font-weight: 400;
}

.bottom ul,
.bottom ol {
    padding-left: 35px;
}