:root {
    --gfx-gold: #d4af37;
    --gfx-gold-light: #f5d97a;
    --gfx-gold-dark: #b8860b;
    --gfx-gold-gradient: linear-gradient(135deg, #f5d97a 0%, #d4af37 45%, #b8860b 100%);
    --gfx-black: #030200;
    --gfx-dark: #121212;
    --gfx-dark-2: #1c1c1c;
    --gfx-gray: #9a9a9a;
    --gfx-light: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--gfx-black);
    color: var(--gfx-light);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

a {
    text-decoration: none;
}

section[id] {
    scroll-margin-top: 85px;
}

.text-gold {
    color: var(--gfx-gold);
}

.bg-gold {
    background: var(--gfx-gold-gradient);
    color: var(--gfx-black);
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gfx-black);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.loader-logo {
    height: 60px;
    width: auto;
    animation: loader-pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gfx-gold);
    animation: loader-spin 0.8s linear infinite;
}

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

@keyframes loader-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.94);
    }
}

.site-header {
    position: relative;
    z-index: 1050;
}

.site-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: header-slide-down 0.35s ease;
}

@keyframes header-slide-down {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar {
    background-color: #141210;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.navbar.navbar-scrolled {
    background-color: #14110d;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

.brand-logo {
    height: 50px;
    width: auto;
}

@media (min-width: 992px) {
    .navbar-nav {
        gap: 1.3rem;
    }
}

.navbar .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    transition: color 0.25s ease;
}

@media (min-width: 992px) and (max-width: 1299.98px) {
    .navbar-nav {
        gap: 0.5rem;
    }

    .navbar .nav-link {
        padding: 0.5rem 0.35rem;
        font-size: 0.9rem;
    }

    .btn-nav {
        padding: 0.45rem 1rem;
        font-size: 0.88rem;
    }

    .nav-actions {
        gap: 0.4rem !important;
    }

    .brand-logo {
        height: 42px;
    }
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
    color: var(--gfx-gold);
}

.gfx-dropdown {
    background-color: #1c1a16;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.gfx-dropdown .dropdown-item {
    color: #e9e9e9;
    font-weight: 500;
}

.gfx-dropdown .dropdown-item:hover,
.gfx-dropdown .dropdown-item:focus {
    background: var(--gfx-gold-gradient);
    color: var(--gfx-black);
}

.btn-nav {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    border-radius: 50px;
    padding: 0.55rem 1.4rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: all 0.25s ease;
}

.btn-nav:hover,
.btn-nav:focus {
    background: var(--gfx-gold-gradient);
    border-color: transparent;
    color: var(--gfx-black);
}

.gfx-offcanvas {
    background-color: #141210;
    color: #ffffff;
    width: 300px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero {
    position: relative;
    min-height: 90vh;
    background: url('../img/header-shadow.jpeg') top center / 100% auto no-repeat, var(--gfx-black);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/banner-bg.png') top center / cover no-repeat;
    opacity: 0.55; background-size: cover;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
  
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.15rem;
    color: #cfcfcf;
    max-width: 520px;
    margin-bottom: 2.25rem;
}

.btn-gold {
    background: var(--gfx-gold-gradient);
    color: var(--gfx-black);
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px;
    padding: 0.7rem 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold:hover,
.btn-gold:focus {
    color: var(--gfx-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

.hero-cta {
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-disclaimer {
    font-size: 0.95rem;
    color: #8a8a8a;
    margin-bottom: 0;
}

.hero-img {
    max-width: 90%;
    height: auto;
}

@media (max-width: 991.98px) {
    .hero {
        text-align: center;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-img {
        max-width: 80%;
        margin-top: 2rem;
    }
}

@media (max-width: 991.98px) {
    .nav-actions .btn-nav {
        width: 100%;
    }
}

.intro-section {
    position: relative;
    background: radial-gradient(ellipse 55% 60% at 50% 40%, rgba(212, 175, 55, 0.12) 0%, transparent 50%), var(--gfx-black);
    padding: 4rem 0;
    overflow: hidden;
}

.intro-label {
    color: var(--gfx-gold);
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.intro-heading {
    font-size: 3.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.intro-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.intro-card {
    flex: 0 0 30%;
    max-width: 30%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 2rem 1.5rem;
    text-align: center;
    transform: scale(0.9);
    opacity: 0.5;
    transition: transform 0.5s ease, opacity 0.5s ease, background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.intro-card.active {
    transform: scale(1.06);
    opacity: 1;
    background: linear-gradient(180deg, rgba(45, 34, 12, 0.65) 0%, rgba(12, 9, 4, 0.92) 100%);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.15);
}

.intro-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    margin-bottom: 1.25rem;
    transition: box-shadow 0.5s ease, background 0.5s ease;
}

.intro-icon i {
    font-size: 1.85rem;
    color: var(--gfx-gold);
}

.intro-card.active .intro-icon {
    background: rgba(212, 175, 55, 0.22);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.5);
}

.intro-card h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-card p {
    color: #9a9a9a;
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .intro-heading {
        font-size: 2.25rem;
    }

    .intro-slider {
        flex-direction: column;
    }

    .intro-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        transform: none;
        opacity: 1;
        order: 0 !important;
    }
}

.marquee-section {
    background-color: var(--gfx-black);
    padding: 1rem 0;
}

.marquee {
    overflow: hidden;
    width: 100%;
    padding: 8px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 1.25rem;
    animation: marquee-scroll 40s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    background-color: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.marquee-item i {
    color: var(--gfx-gold);
    font-size: 1.1rem;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.device-section {
    background-color: var(--gfx-black);
    padding: 2rem 0;
    overflow: hidden;
}

.device-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.about-lead {
    font-size: 1.05rem;
    color: #c9c9c9;
  
    line-height: 1.8;
}

.about-img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .about-content {
        text-align: center;
    }

    .about-img {
        max-width: 75%;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .device-heading {
        font-size: 1.6rem;
    }
}

.markets-section {
    background-color: #ffffff;
    padding: 2.5rem 0;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: #14110d;
    margin-bottom: 1rem;
}

.market-card {
    height: 100%;
    background: #f4f4f4;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.market-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.market-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #14110d;
    margin-bottom: 1.25rem;
}

.market-icon {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.market-card p {
    font-size: 1rem;
    color: #111;
    margin-bottom: 0;
}

.platform-box {
    margin-top: 1.5rem;
    background: #f4f4f4;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 3rem;
}

.platform-img {
    max-width: 100%;
    height: auto;
}

.platform-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #14110d;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.platform-text {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.platform-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .platform-heading {
        font-size: 1.9rem;
        text-align: center;
    }

    .platform-text {
        text-align: center;
    }

    .platform-img {
        max-width: 80%;
        margin-bottom: 1.5rem;
    }

    .platform-box {
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .section-heading {
        font-size: 1.6rem;
    }

    .market-icon {
        width: 70px;
        height: 70px;
    }
}

.why-section {
    background-color: var(--gfx-black);
    padding: 3rem 0;
}

.why-heading {
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.why-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.why-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    margin-bottom: 1.25rem;
}

.why-icon i {
    font-size: 1.6rem;
    color: var(--gfx-gold);
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.95rem;
    color: #9a9a9a;
    margin-bottom: 0;
    line-height: 1.7;
}

.steps-section {
    position: relative;
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
}

.steps-section .why-heading {
    color: #14110d;
}

.steps-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 31px;
    width: 2px;
    height: 100%;
    z-index: 0;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.15));
}

.timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 31px;
    width: 2px;
    height: 42px;
    border-radius: 2px;
    z-index: 1;
    background: linear-gradient(to bottom, transparent, var(--gfx-gold-light), var(--gfx-gold), transparent);
    box-shadow: 0 0 10px 2px rgba(245, 217, 122, 0.7);
    animation: timeline-flow 2.8s ease-in-out infinite;
}

@keyframes timeline-flow {
    0% {
        top: 31px;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        top: calc(100% - 11px);
        opacity: 0;
    }
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    padding-bottom: 3.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-node {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gfx-black);
    background: var(--gfx-gold-gradient);
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.4);
}

.timeline-content {
    padding-top: 0rem;
}

.timeline-step {
    display: inline-block;
    color: var(--gfx-gold-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.timeline-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #14110d;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #5a5a5a;
    margin-bottom: 0;
    line-height: 1.7;
}

.faq-section {
    position: relative;
    background: radial-gradient(ellipse 50% 60% at 0% 0%, rgba(212, 175, 55, 0.38) 0%, transparent 60%), var(--gfx-black);
    padding: 3rem 0;
    overflow: hidden;
}

.faq-heading {
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.faq-accordion {
    max-width: 1020px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--gfx-gold);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-button::after {
    filter: invert(78%) sepia(52%) saturate(500%) hue-rotate(0deg) brightness(95%);
}

.faq-accordion .accordion-body {
    color: #b5b5b5;
    font-size: 0.95rem;
    line-height: 1.8;
}

.cta-section {
    background-color: var(--gfx-black);
    padding: 3rem 0;
}

.cta-box {
    position: relative;
    border-radius: 24px;
    padding: 4rem 1.5rem;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(to top, rgba(255, 149, 0, 0.9) 0%, rgba(255, 149, 0, 0.45) 18%, rgba(212, 175, 55, 0.12) 40%, transparent 60%),
        url('../img/box-grid.svg') center bottom / cover no-repeat,
        #0a0806;
}

.cta-heading {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    max-width: 720px;
    margin: 0 auto 1.25rem;
    line-height: 1.15;
}

.cta-text {
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    color: #d8d8d8;
    max-width: 1020px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-btn {
    position: relative;
    z-index: 2;
    border-radius: 50px;
    padding: 0.85rem 2.25rem;
}

@media (max-width: 767.98px) {
    .cta-heading {
        font-size: 1.9rem;
    }

    .cta-box {
        padding: 3rem 1.25rem;
    }
}


.site-footer {
    background-color: #0a0806;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 3rem 0 1.75rem;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-text {
    color: #9a9a9a;
    font-size: 0.95rem;
    max-width: 920px;
    margin: 0 auto 1.75rem;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.25s ease;
}

.footer-socials a:hover {
    background: var(--gfx-gold-gradient);
    color: var(--gfx-black);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-disclaimer {
    color: #6a6a6a;
    font-size: 0.85rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 1.75rem 0 1.25rem;
}

.footer-copy {
    color: #8a8a8a;
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .intro-section,
    .why-section,
    .steps-section,
    .faq-section,
    .cta-section {
        padding: 2rem 0;
    }

    .device-section,
    .markets-section {
        padding: 1.75rem 0;
    }

    .intro-heading {
        font-size: 2rem;
        margin-bottom: 1.75rem;
    }

    .section-heading,
    .platform-heading {
        font-size: 1.9rem;
    }

    .platform-box {
        padding: 1.75rem;
    }

    .platform-img,
    .about-img {
        max-width: 70%;
    }

    .cta-box {
        padding: 3rem 1.25rem;
    }

    .cta-heading {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .intro-section,
    .why-section,
    .steps-section,
    .faq-section,
    .cta-section,
    .device-section,
    .markets-section {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .intro-heading {
        font-size: 1.7rem;
    }

    .section-heading,
    .platform-heading,
    .device-heading,
    .cta-heading {
        font-size: 1.55rem;
    }

    .intro-card,
    .why-card {
        padding: 1.5rem 1.25rem;
    }

    .market-card {
        padding: 1.5rem 1.25rem;
    }

    .platform-box {
        padding: 1.5rem 1.25rem;
    }

    .cta-box {
        padding: 2.25rem 1rem;
    }

    .about-lead,
    .platform-text,
    .why-card p,
    .intro-card p,
    .market-card p,
    .cta-text {
        font-size: 0.9rem;
    }

    .hero-img {
        max-width: 70%;
    }

    .platform-img,
    .about-img {
        max-width: 65%;
    }

    .market-icon {
        width: 64px;
        height: 64px;
    }

    .faq-accordion .accordion-button {
        font-size: 0.95rem;
        padding: 1rem 1.15rem;
    }

    .faq-accordion .accordion-body {
        font-size: 0.9rem;
    }

    .brand-logo {
        height: 40px;
    }

    .footer-logo {
        height: 45px;
    }
}

@media (max-width: 767.98px) {
    .btn-gold {
        padding: 0.7rem 1.6rem;
        font-size: 0.9rem;
    }

    .btn-nav {
        padding: 0.5rem 1.15rem;
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 0.7rem 1.75rem;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.85rem;
    }

    .hero-text {
        font-size: 1.05rem;
    }

    .hero-img {
        max-width: 82%;
    }

    .intro-section,
    .why-section,
    .steps-section,
    .faq-section,
    .cta-section {
        padding: 2.5rem 0;
    }

    .intro-heading {
        font-size: 2.5rem;
    }

    .section-heading,
    .platform-heading,
    .device-heading,
    .cta-heading {
        font-size: 2rem;
    }

    .about-lead,
    .platform-text {
        font-size: 1rem;
    }

    .about-img,
    .platform-img {
        max-width: 85%;
    }

    .market-icon {
        width: 88px;
        height: 88px;
    }

    .intro-card {
        padding: 1.75rem 1.25rem;
    }

    .why-card {
        padding: 1.75rem 1.4rem;
    }
}
