.hero-section {
    margin-bottom: 30px;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-title {
    font-size: 75px;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 38px;
    font-weight: 400;
    max-width: 500px;
}

.hero-text {
    font-size: 18px;
    line-height: 1;
    max-width: 500px;
    color: #667085;
    margin-bottom: 30px;
}

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

.hero-video-box {
    position: relative;
    width: 450px;
    height: 400px;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: right;
    justify-content: right;
}

.hero-video {
    width: 85%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-toggle {
    position: absolute;
    right: 30px;
    bottom: 38px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #050505;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

.hero-video-box:hover .video-toggle {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-video-caption {
    margin-top: 10px;
    font-size: 13px;
    color: #667085;
    text-align: left;
    margin-bottom: 30px;
}

.hero-video-caption a {
    color: #475467;
    text-decoration: underline;
}

.promo-slider-section {
    background: #121419;
    padding: 48px 0 70px;
    overflow: hidden;
}

.promo-slider {
    width: 100%;
    position: relative;
}

.promo-slide {
    display: none;
    animation: fadeSlide 0.35s ease;
}

.promo-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.promo-card {
    width: calc(100% - 60px);
    margin: 0 auto;
    min-height: 420px;
    background: #070809;
    border-radius: 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
}

.promo-image,
.promo-video-wrap {
    height: 372px;
    margin-left: 24px;
    border-radius: 28px;
    overflow: hidden;
    background: #001bff;
    position: relative;
}

.promo-image img,
.promo-video-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* hidden by default */
.promo-video-toggle {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #252932;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

/* show only when mouse enters video area */
.promo-video-wrap:hover .promo-video-toggle {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.promo-content {
    color: #fff;
    padding: 40px 70px;
}

.promo-content h2 {
    font-size: 52px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
    max-width: 530px;
}

.promo-content p {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 22px;
}

.promo-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #050505;
    height: 44px;
    padding: 0 28px;
    border-radius: 28px;
    font-size: 18px;
    font-weight: 400;
}

.promo-note {
    color: #9297a3;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    max-width: 1180px;
    margin: 14px auto 0;
    padding: 0 30px;
}

.promo-controls {
    position: relative;
    width: calc(100% - 60px);
    margin: 30px auto 0;
    display: flex;
    align-items: center;
}

.promo-dots {
    width: 108px;
    height: 34px;
    border-radius: 22px;
    background: #252932;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: #5b606a;
    cursor: pointer;
}

.dot.active {
    width: 18px;
    height: 6px;
    border-radius: 20px;
    background: #fff;
}

.promo-pause {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #252932;
    color: #fff;
    margin-left: 14px;
    font-size: 13px;
    cursor: pointer;
}

.promo-arrows {
    margin-left: auto;
    display: flex;
    gap: 14px;
}

.promo-arrows button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #252932;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 130px;
        margin-bottom: 45px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .hero-title {
        font-size: 56px;
        line-height: 1;
        letter-spacing: -3px;
        max-width: 100%;
        margin-bottom: 30px;
        font-weight: 400;
    }

    .hero-text {
        font-size: 28px;
        line-height: 1.45;
        color: #000;
        max-width: 100%;
        margin-bottom: 42px;
    }

    .hero-section .primary-btn {
        width: 100%;
        height: 66px;
        border-radius: 46px;
        font-size: 28px;
        font-weight: 800;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 232px;
    }

    .hero-title {
        font-size: 56px;
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 22px;
    }

    .risk-bar {
        font-size: 18px;
    }

    .primary-btn {
        min-width: 130px;
        font-size: 20px;
    }

    .circle-btn,
    .mobile-menu-btn {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 900px) {
    .promo-card {
        grid-template-columns: 1fr;
        width: calc(100% - 32px);
        padding-bottom: 30px;
    }

    .promo-image {
        margin: 16px;
        height: 300px;
    }

    .promo-content {
        padding: 25px;
    }

    .promo-content h2 {
        font-size: 34px;
    }

    .promo-controls {
        width: calc(100% - 32px);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -1px;
    }
}

.crypto-assets-section {
    background: #eef1f5;
    padding: 60px 0;
}

.crypto-assets-container {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 45px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 120px;
    align-items: center;
}

.crypto-assets-content h2 {
    font-size: 40px;
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: 1px;
    color: #050505;
    margin-bottom: 26px;
}

.crypto-assets-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 30px;
}

.assets-btn {
    height: 58px;
    min-width: 210px;
    border-radius: 32px;
    background: #050505;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
}

.crypto-market-card {
    background: #070809;
    border-radius: 40px;
    min-height: 455px;
    padding: 32px 40px;
    color: #ffffff;
}

.market-tabs {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 56px;
}

.market-tabs button {
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.market-tabs button.active {
    background: #292d35;
    padding: 14px 26px;
    border-radius: 28px;
}

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

.market-list :hover {
    background-color: #121419;
}

.market-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coin-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -1px;
}

.coin-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    flex-shrink: 0;
}

.btc {
    background: #f7931a;
}

.eth {
    background: #627eea;
}

.usdt {
    background: #26a17b;
}

.bnb {
    background: #f3ba2f;
}

.xrp {
    background: #2b2b2b;
}

.usdc {
    background: #2775ca;
}

.coin-price {
    text-align: right;
}

.coin-price strong {
    display: block;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
}

.coin-price small {
    display: block;
    font-size: 16px;
    margin-top: 2px;
}

.down {
    color: #ff5b6b;
}

.up {
    color: #26c281;
}

.neutral {
    color: #8b909a;
}

@media (max-width: 1000px) {
    .crypto-assets-container {
        padding: 0 24px;
        grid-template-columns: 1fr;
    }

    .crypto-market-card {
        padding: 30px 24px;
    }

    .coin-info {
        font-size: 28px;
    }

    .coin-price strong {
        font-size: 24px;
    }
}

.market-loading {
    color: #ffffff;
    font-size: 18px;
}

.coin-icon-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}

.coin-detail-page {
    padding: 120px 60px;
    background: #f5f7fb;
    min-height: 100vh;
}

.coin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.coin-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.coin-large-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.coin-header h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 8px;
}

.coin-header p {
    color: #667085;
}

.coin-price-box {
    margin-bottom: 50px;
}

.coin-price-box h2 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

.coin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.coin-stat-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
}

.coin-stat-card h4 {
    font-size: 15px;
    color: #667085;
    margin-bottom: 16px;
}

.coin-stat-card strong {
    font-size: 26px;
}

.coin-description {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
}

.coin-description h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.coin-description p {
    line-height: 1.8;
    color: #475467;
}

@media (max-width: 1000px) {
    .coin-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .coin-detail-page {
        padding: 100px 20px;
    }

    .coin-stats-grid {
        grid-template-columns: 1fr;
    }

    .coin-price-box h2 {
        font-size: 48px;
    }
}

.coin-page {
    background: #f6f8fb;
    color: #050505;
    padding: 0 14px 40px;
}

.coin-topbar {
    height: 76px;
    background: #fff;
    border: 1px solid #d9dee7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
}

.coin-title-left,
.coin-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coin-title-left img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.coin-title-left h1 {
    font-size: 22px;
    font-weight: 800;
}

.coin-title-left button,
.coin-nav button {
    border: none;
    background: #eef1f5;
    padding: 9px 14px;
    border-radius: 20px;
    font-weight: 700;
}

.coin-nav button.active {
    background: #1f232b;
    color: #fff;
}

.coin-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    border-left: 1px solid #d9dee7;
    border-right: 1px solid #d9dee7;
    background: #fff;
}

.coin-sidebar {
    border-right: 1px solid #d9dee7;
    padding: 26px;
}

.coin-sidebar h2 {
    font-size: 24px;
    margin-bottom: 18px;
}

.coin-sidebar p {
    font-size: 14px;
    line-height: 1.6;
}

.coin-links {
    display: flex;
    gap: 8px;
    margin: 18px 0;
}

.coin-links a {
    background: #eef1f5;
    padding: 9px 12px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 700;
}

.buy-coin-btn {
    height: 52px;
    border-radius: 28px;
    background: #0052ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.explore-box {
    background: #ffd500;
    border-radius: 18px;
    padding: 20px;
}

.explore-box h4 {
    font-size: 17px;
    margin-bottom: 10px;
}

.explore-box a {
    display: inline-flex;
    margin-top: 12px;
    background: #0052ff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 800;
}

.coin-main {
    background: #fff;
}

.coin-chart-section {
    min-height: 430px;
    padding: 28px;
    position: relative;
}

.coin-price-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.coin-price-header h2 {
    font-size: 34px;
    font-weight: 400;
}

.positive {
    color: #098551;
}

.negative {
    color: #cf202f;
}

.coin-chart-tabs {
    position: absolute;
    top: 34px;
    right: 34px;
    display: flex;
    gap: 28px;
}

.coin-chart-tabs button {
    border: none;
    background: transparent;
    font-weight: 800;
}

.coin-chart-tabs button.active {
    background: #e9f8ef;
    color: #098551;
    padding: 8px 14px;
    border-radius: 18px;
}

.coin-chart {
    height: 310px;
    margin-top: 50px;
}

.coin-chart svg {
    width: 100%;
    height: 100%;
}

.coin-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #d9dee7;
    border-bottom: 1px solid #d9dee7;
}

.coin-info-card {
    padding: 28px;
    min-height: 220px;
    border-right: 1px solid #d9dee7;
}

.coin-info-card:last-child {
    border-right: none;
}

.coin-info-card h3 {
    font-size: 18px;
    margin-bottom: 18px;
}

.circle-stat {
    width: 62px;
    height: 62px;
    border: 5px solid #0052ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 10px;
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 25px;
}

.mini-grid span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: underline;
    color: #334155;
}

.mini-grid strong {
    font-size: 12px;
}

.risk-note {
    padding: 22px 28px;
    color: #64748b;
    border-bottom: 1px solid #d9dee7;
}

.detail-block {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: #fff;
    border: 1px solid #d9dee7;
    border-top: none;
}

.detail-block h2 {
    padding: 26px;
    font-size: 24px;
    border-right: 1px solid #d9dee7;
}

.detail-block > div {
    padding: 26px;
}

.risk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 60px;
    margin-top: 22px;
}

.risk-grid p,
.bottom-details p {
    color: #475467;
    line-height: 1.6;
}

.bottom-details {
    grid-template-columns: 300px 1fr 1fr;
}

@media (max-width: 900px) {
    .coin-layout,
    .detail-block,
    .bottom-details {
        grid-template-columns: 1fr;
    }

    .coin-sidebar,
    .detail-block h2 {
        border-right: none;
    }

    .coin-stats-row,
    .risk-grid {
        grid-template-columns: 1fr;
    }

    .coin-topbar {
        height: auto;
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.coinbase-one-section {
    background: #ffffff;
    padding: 110px 0;
}

.coinbase-one-container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.coinbase-one-visual {
    background: #eef1f5;
    border: 1px solid #d9dee7;
    border-radius: 64px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.coinbase-one-visual img {
    width: 92%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

.coinbase-one-content {
    max-width: 620px;
}

.coinbase-one-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    padding: 0 20px;
    border: 1px solid #d9dee7;
    border-radius: 16px;
    color: #344054;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 38px;
}

.coinbase-one-badge span {
    width: 18px;
    height: 18px;
    color: #000000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

.coinbase-one-content h2 {
    font-size: 40px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: 1px;
    color: #050505;
    margin-bottom: 28px;
}

.coinbase-one-content p {
    font-size: 16px;
    line-height: 1.45;
    color: #475467;
    margin-bottom: 36px;
}

.coinbase-one-btn {
    height: 58px;
    min-width: 180px;
    border-radius: 999px;
    background: #050505;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 1000px) {
    .coinbase-one-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .coinbase-one-content h2 {
        font-size: 44px;
    }

    .coinbase-one-content p {
        font-size: 18px;
    }
}

/*################# Advanced trade #######################*/

.advanced-trade-section {
    background: #ffffff;
    padding: 70px 0 120px;
}

.advanced-trade-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 70px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;
}

.advanced-trade-content h2 {
    font-size: 44px;
    line-height: 1.07;
    font-weight: 400;
    letter-spacing: 1px;
    color: #050505;
    margin-bottom: 38px;
}

.advanced-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 42px;
    width: 75%;
}

.advanced-feature {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 32px;
    align-items: flex-start;
}

.advanced-check {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f3f6;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    font-size: 0;
}

.advanced-check::before {
    content: "✓";
    width: 20px;
    height: 20px;
    background: #050505;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
}

.advanced-feature h4 {
    font-size: 16px;
    font-weight: 500;
    color: #475467;
    margin-bottom: 8px;
}

.advanced-feature p {
    font-size: 16px;
    line-height: 1.35;
    color: #475467;
    max-width: 680px;
}

.advanced-btn {
    height: 58px;
    min-width: 150px;
    border-radius: 999px;
    background: #050505;
    color: #ffffff;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 500;
}

.advanced-trade-visual {
    height: 400px;
    border-radius: 72px;
    background: #070809;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.advanced-trade-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .advanced-trade-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .advanced-trade-content h2 {
        font-size: 44px;
    }

    .advanced-feature h4,
    .advanced-feature p {
        font-size: 19px;
    }

    .advanced-trade-visual {
        height: 420px;
        border-radius: 42px;
    }
}

.learn-cards-section {
    background: #ffffff;
    padding: 70px 0 120px;
}

.learn-cards-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.learn-card {
    background: #f4f6f8;
    border-radius: 62px;
    overflow: hidden;
    text-decoration: none;
    color: #050505;
    display: block;
    transition: 0.25s ease;
}

.learn-card:hover {
    transform: translateY(-4px);
}

.learn-card-image {
    height: 330px;
    margin: 32px 38px 0;
    border-radius: 42px;
    overflow: hidden;
}

.learn-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.learn-card-body {
    padding: 28px 38px 38px;
}

.learn-card-body h3 {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 800;
    color: #050505;
    margin-bottom: 20px;
}

.learn-card-body p {
    font-size: 16px;
    line-height: 1.4;
    color: #475467;
    max-width: 650px;
}

@media (max-width: 1000px) {
    .learn-cards-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .learn-card {
        border-radius: 42px;
    }

    .learn-card-image {
        height: 320px;
        margin: 24px 24px 0;
    }

    .learn-card-body {
        padding: 28px 24px 36px;
    }

    .learn-card-body h3 {
        font-size: 24px;
    }

    .learn-card-body p {
        font-size: 17px;
    }
}

.trust-section {
    background: #ffffff;
    padding: 80px 0 60px;
}

.trust-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 40px;
}

.trust-header {
    text-align: center;
    margin-bottom: 54px;
}

.trust-header h2 {
    font-size: 52px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0a0b0d;
    margin-bottom: 18px;
}

.trust-header p {
    font-size: 18px;
    color: #5b616e;
}

.trust-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-card {
    background: #f4f6f8;
    border-radius: 42px;
    min-height: 445px;
    padding: 36px 32px 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trust-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 56px;
}

.trust-card h3 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
    color: #0a0b0d;
    margin-bottom: 12px;
    letter-spacing: 1;
    word-spacing: 1.5;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.48;
    color: #5b616e;
    letter-spacing: 1;
}

.trust-btn {
    width: fit-content;
    height: 40px;
    min-width: 128px;
    padding: 0 20px;
    border-radius: 999px;
    background: #050505;
    color: #ffffff;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 16px;
    font-weight: 500;
    margin-top: 28px;
}

.trust-btn span {
    font-size: 25px;
    line-height: 1;
    font-weight: 400;
}

.trust-notes {
    max-width: 800px;
    margin: 135px auto 0;
}

.trust-notes p {
    font-size: 13px;
    line-height: 1.55;
    color: #5b616e;
    margin-bottom: 28px;
}

.trust-notes a {
    color: #5b616e;
    text-decoration: underline;
}

@media (max-width: 1000px) {
    .trust-card-grid {
        grid-template-columns: 1fr;
    }

    .trust-header h2 {
        font-size: 40px;
    }

    .trust-notes {
        margin-top: 60px;
    }
}
