/* ==========================================================================
   HEADER MOBILE HIDING - Desktop Only
   ========================================================================== */

/* Hide ALL mobile-only elements by default on desktop */
.header-mobile-only,
.header-mobile-language,
.header-mobile-theme,
.header-mobile-login,
.header__row-top,
.header__row-bottom,
.header__row-right-mobile {
    display: none !important;
}

/* Desktop Only Styles */
@media (min-width: 1025px) {
    .header-mobile-only,
    .header-mobile-language,
    .header-mobile-theme,
    .header-mobile-login,
    .header__row-top,
    .header__row-bottom,
    .header__row-right-mobile {
        display: none !important;
    }

    .header__row-left {
        display: flex !important;
    }

    .header__row-right {
        display: flex !important;
    }
}

/* Mobile Header Styles - Show mobile elements only on mobile */
@media (max-width: 1024px) {
    .header__row-top {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 24px;
        margin: 0;
        padding: 0;
        position: relative;
    }

    .header__row-bottom {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        margin-top: 13px;
        height: 44px;
        padding: 0;
    }

    .header__row-right-mobile {
        display: flex !important;
    }

    .header-mobile-language {
        display: flex !important;
    }

    .header-mobile-theme {
        display: flex !important;
    }

    .header-mobile-login {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 42.308%, rgba(255, 255, 255, 0.05) 100%);
        border-radius: 50px;
        padding: 0;
        height: 34px;
        width: 211px;
        text-decoration: none;
        color: #ffffff;
    }

    .header__row-right {
        display: none !important;
    }

    .header__row-left {
        display: none !important;
    }
    
    body.mobile-nav-open .header__row-left {
        display: block !important;
        width: 100%;
    }

    /* Navigation menu - hidden by default, shown when burger clicked */
    .header-nav {
        width: 92vw;
        max-width: 420px;
        margin: 0 auto;
        margin-top: 0rem;
        display: none;
        position: fixed;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        bottom: 0;
        background: #18181c;
        z-index: 1000;
        overflow-y: auto;
        padding: 18px 10px 18px 10px;
        border-radius: 8px;
        box-shadow: 0 8px 32px 0 rgba(0,0,0,0.28);
        border: 1.5px solid #23232b;
    }

    .dark .header-nav {
        background: #18181c;
        border: 1.5px solid #23232b;
    }

    /* Light theme mobile menu styling */
    body:not(.dark) .header-nav {
        background: #f4f5f7;
        border: 1px solid #e0e0e0;
        box-shadow: 0 8px 32px 0 rgba(0,0,0,0.1);
    }

    .header-nav__list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
        align-items: flex-start;
    }

    .header-nav__link {
        color: #fff;
        font-size: 1.08rem;
        font-weight: 500;
        padding: 0.5rem 0 0.5rem 0.5rem;
        border-radius: 8px;
        transition: background 0.18s, color 0.18s;
        text-decoration: none;
        letter-spacing: 0.01em;
        text-align: left;
        width: 100%;
    }

    .header-nav__link:hover,
    .header-nav__link.active {
        background: #23232b;
        color: #3bc77e;
    }

    /* Light theme navigation links */
    body:not(.dark) .header-nav__link {
        color: #101010;
    }

    body:not(.dark) .header-nav__link:hover,
    body:not(.dark) .header-nav__link.active {
        background: #f0f0f0;
        color: #2abaa9;
    }

    .header-mobile-only.header-mobile-extra {
        background: #23232b;
        border-radius: 12px;
        padding: 10px 8px 8px 8px;
        margin-bottom: 12px;
    }

    /* Light theme mobile menu extra section */
    body:not(.dark) .header-mobile-only.header-mobile-extra {
        background: white;
        /* border: 1px solid #e9ecef; */
    }

    .header-dropdown__list-info {
        color: #f3f3f3;
        font-size: 0.98rem;
        margin-bottom: 4px;
        font-weight: 400;
        text-align: left;
    }

    /* Light theme dropdown info text */
    body:not(.dark) .header-dropdown__list-info {
        color: #6c757d;
    }

    .header-dropdown__list-title,
    .item-language {
        color: #fff;
        font-size: 0.98rem;
        padding: 0.4rem 0 0.4rem 0.5rem;
        border-radius: 7px;
        transition: background 0.15s, color 0.15s;
        display: block;
        text-align: left;
    }

    /* .header-dropdown__list-title:hover,
    .item-language:hover {
        background: #23232b;
        color: #3bc77e;
    } */

    /* Light theme dropdown titles and language items */
    body:not(.dark) .header-dropdown__list-title,
    body:not(.dark) .item-language {
        color: #000000;
    }

    body:not(.dark) .header-dropdown__list-title:hover,
    body:not(.dark) .item-language:hover {
        background: #f0f0f0;
        color: #2abaa9;
    }

    .item-language__active {
        color: #3bc77e;
        font-weight: 600;
    }

    /* Light theme active language item */
    body:not(.dark) .item-language__active {
        color: #2abaa9;
    }

    .theme-switcher.mt-4 {
        margin-top: 24px !important;
    }

    .theme-switcher h3 {
        color: #fff;
        font-size: 0.8rem;
        margin-bottom: 8px;
        font-weight: 500;
    }

    /* Light theme theme switcher */
    body:not(.dark) .theme-switcher h3 {
        color: #101010;
    }

    .header-mobile-only .header-dropdown__list {
        background: none;
        padding: 0;
    }

    .settings-dropdown__list-link {
        color: #fff;
        text-decoration: none;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }

    /* Light theme settings dropdown links */
    body:not(.dark) .settings-dropdown__list-link {
        color: #fff;
    }

    .settings-dropdown__list-link .header-dropdown__list-title {
        padding: 0.5rem 0 0.5rem 0.5rem;
    }

    /* .settings-dropdown__list-link .header-dropdown__list-title:hover {
        background: #23232b;
        color: #3bc77e;
    } */

    /* Light theme settings dropdown hover */
    body:not(.dark) .settings-dropdown__list-link .header-dropdown__list-title:hover {
        background: #f0f0f0;
        color: #2abaa9;
    }

    .header-nav.active {
        display: block;
    }

    /* Prevent body scroll when menu is open */
    body.mobile-nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    /* Hide desktop elements on mobile */
    .header-desktop-only {
        display: none !important;
    }

    /* Mobile-only elements shown in burger menu */
    .header-mobile-only {
        display: block !important;
    }

    /* Ensure the extra mobile block is visible when menu is active */
    .header-nav.active .header-mobile-only.header-mobile-extra {
        display: block !important;
    }

    .header-mobile-only .header-dropdown__list,
    .header-mobile-only .header-dropdown__list--mobile-open {
        display: block !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin-top: 0;
        pointer-events: auto;
    }

    .header-desktop-only {
        display: none !important;
    }
    .header-section .header__row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        height: auto !important;
        padding: 0 160px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    body:not(.dark) .header-mobile-login {
        color: #101010 !important;
    }
    body:not(.dark) .header-btn span {
        background: #101010 !important;
    }
        body:not(.dark) .header-mobile-login .header-login-icon svg {
        stroke: #101010 !important;
    }
    body:not(.dark) .header-section {
        background-color: #f4f5f7 !important;
    }
    body:not(.dark) .header-mobile-theme .theme-toggle-wrapper {
        background: #ffffff !important;
    }
    .header-mobile-login .header-login-icon {
        width: 24px;
        height: 24px;
    }
    .header-section, .header-section.header {
        padding: 11px 16px !important;
        height: auto !important;
        min-height: 81px !important;
        margin-bottom: 0 !important;
    }
    .home-hero::after {
        width: 100vw !important;
    }
        /* Language selector - mobile visible */
    .header-mobile-language {
        display: flex !important;
        align-items: center;
        gap: 5px;
        margin-left: 0;
        flex-shrink: 0;
    }

    .header-mobile-language .header-dropdown__row {
        position: relative;
    }

    .header-mobile-language .header-dropdown__button {
        display: none;
        align-items: center;
        gap: 5px;
        background: transparent !important;
        border: none;
        padding: 0;
        cursor: pointer;
        height: 24px;
        margin: 0;
    }

    .header-mobile-language .header-dropdown__icon {
        width: 17px;
        height: 17px;
    }

    .header-mobile-language .header-dropdown__icon-color {
        fill: #ffffff;
        stroke: #ffffff;
    }

    .header-mobile-language .language-text {
        font-size: 18px;
        font-weight: 300;
        color: #ffffff;
        font-family: 'Helvetica', sans-serif;
    }

    .header-mobile-language .language-arrow {
        width: 20px;
        height: 20px;
        color: #ffffff;
    }

    .header-mobile-language .language-arrow svg {
        stroke: #ffffff;
    }

    /* Hamburger menu */
    .header-btn,
    #header-burger-mobile {
        display: block;
        width: 24px;
        height: 24px;
        margin: 0;
        cursor: pointer;
        position: relative;
    }

    .header-btn span,
    #header-burger-mobile span {
        display: block;
        width: 100%;
        height: 2px;
        background: #f4f5f7;
        margin: 4px 0;
        transition: all 0.3s;
    }

    /* Bottom row: Theme toggle | Login button */
    .header__row-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        margin-top: 13px;
        height: 44px;
        padding: 0;
    }

    /* Theme toggle - mobile visible */
    .header-mobile-theme {
        display: flex !important;
        align-items: center;
    }

    .header-mobile-theme .theme-toggle-wrapper {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 42.308%, rgba(255, 255, 255, 0.05) 100%);
        border-radius: 50px;
        padding: 2px;
        display: flex;
        gap: 5px;
        height: 44px;
    }

    .header-mobile-theme .theme-toggle-btn {
        width: 30px;
        height: 30px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        color: #ffffff;
    }

    .header-mobile-theme .theme-toggle-btn-sun {
        opacity: 0.5;
    }

    .header-mobile-theme .theme-toggle-btn-moon {
        background: #000000;
    }

    .header-mobile-theme .theme-toggle-btn svg {
        width: 17px;
        height: 17px;
        stroke: #ffffff;
    }

    .header-mobile-theme .theme-toggle-btn-moon svg {
        width: 17px;
        height: 17px;
    }

    /* Light theme adjustments for mobile header */
    body:not(.dark) .header-mobile-language .language-text,
    body:not(.dark) .header-mobile-language .language-arrow,
    body:not(.dark) .header-mobile-language .header-dropdown__icon-color {
        color: #101010 !important;
        stroke: #101010 !important;
        fill: #101010 !important;
    }

    body:not(.dark) .header-mobile-theme .theme-toggle-btn svg {
        stroke: #101010 !important;
    }

    body:not(.dark) .header-mobile-theme .theme-toggle-btn-sun {
        background: #eee !important;
        opacity: 1 !important;
    }

    body:not(.dark) .header-mobile-theme .theme-toggle-btn-moon {
        background: transparent !important;
        opacity: 0.5 !important;
    }
}

/* ==========================================================================
   HOME CONTENT STYLES - Hero, Advantages, FAQ, CTA Banner
   ========================================================================== */


/* Body and main section backgrounds */
body {
    background-color: #030712 !important;
}

body:not(.dark) {
    background-color: #f4f5f7 !important;
}

.main-section {
    background-color: #030712 !important;
}

body:not(.dark) .main-section {
    background-color: #f4f5f7 !important;
}

/* Force home page styles to apply */
.home-hero {
    position: relative !important;
    /* min-height: 1100px !important; */
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 90px 120px 80px !important;
    /* background-color: #000 !important; */
  }
  .home-bg-clr-div {
  background: radial-gradient(125% 125% at 50% 10%, #030712 40%, #88bfba 100%);
  /* background-image: url("/images/BgOnly.png") !important; */
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
  width: 100% !important;
  margin: 0 !important;
  /* LCP Optimizations */
  will-change: transform !important;
  transform: translateZ(0) !important;
  contain: layout style paint !important;
  border-radius: 40px !important;
  height: 620px !important;
}

.home-hero::after {
    content: "";
    display: block;
    position: absolute;
    top: 4%; left: 50%;
    transform: translateX(-50%);
    width: 40vw;
    height: 100%;
    background-image: url("/images/coins/bgCoinsIcon.png");
    background-repeat: no-repeat;
    background-size: contain; /* or contain, as needed */
    z-index: 2; /* adjust as needed */
    pointer-events: none;
    background-position: bottom !important;
}

/* Light theme background - matching Figma design */
body:not(.dark) .home-bg-clr-div {
    background: radial-gradient(125% 125% at 50% 10%, #f4f5f7 40%, #88bfba 100%) !important;
}

/* Responsive min-height */

@media screen and (max-width: 1950px) {
    .home-hero {
        min-height: 800px !important;
    }
}

/* Mobile: Use gradient background like login/signup pages */
@media screen and (max-width: 1100px) and (min-width: 769px) {
    .home-hero {
        /* Dark theme mobile background - same as login/signup pages */
        /* background: linear-gradient(180deg, #000000 0%, #000000 20%, #0b1f1a 50%, #0d4d42 75%, #0f6b5a 100%) !important;
        background-image: none !important;
        background-attachment: scroll !important; */
        min-height: 700px !important;
    }

    /* Light theme mobile background - same as login/signup pages */
}

body:not(.dark) .home-hero {
    background: #f4f7f6 !important;
}
.header-section {
    border-bottom: none !important;
}
@media screen and (max-width: 480px) {
    .home-hero {
        min-height: 600px !important;
    }

    /* Smaller mobile devices - CTA Banner */
    .article-cta-banner {
        width: calc(100% - 32px) !important;
        max-width: 100% !important;
        margin: 80px 16px 20px 16px !important;
        height: 650px !important;
        min-height: 650px !important;
        max-height: 650px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .article-cta-banner::before {
        left: 0 !important;
        right: auto !important;
        background-image: url("/images/coins/mobileOnRock.png") !important;
        background-size: 120% !important;
        background-position: bottom center !important;
        width: 100% !important;
    }

    .article-cta-banner__content {
        width: calc(100% - 50px) !important;
        max-width: 303px !important;
        top: 30px !important;
    }

    .article-cta-banner__text {
        width: 100% !important;
        max-width: 100% !important;
    }

    body:not(.dark) .article-cta-banner__text {
        color: #ffffff !important;
    }

    .article-cta-banner__button {
        width: 192px !important;
        padding: 15px 20px !important;
        font-size: 18px !important;
        top: 189px !important;
    }
}

.home-hero__bg {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url("/images/laptopOnRock.png") !important;
    background-size: contain !important;
    background-position: bottom center !important;
    background-repeat: no-repeat !important;
    z-index: 1 !important;
    pointer-events: none !important;
    margin: 0 auto !important;
}

@media screen and (max-width: 768px) {
    .home-hero__bg {
        background-size: cover !important;
        background-position: bottom center !important;
    }
}

.home-hero__content {
    padding-top: 70px !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    align-items: center !important;
}

.home-hero__title {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 40px !important;
    line-height: 1 !important;
    background: linear-gradient(180deg, #dedede 73.358%, #010000 123.05%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 0 !important;
}

/* Light theme title - dark text with gradient for "Exchange" */
body:not(.dark) .home-hero__title {
    background: linear-gradient(168.643deg, #1F1F1F 43.889%, #5C5C5C 66.083%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.home-hero__title .title-italic {
    font-style: italic !important;
}

.home-hero__title .title-gradient {
    background: linear-gradient(90deg, #2abaa9 0%, #25d69b 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.home-hero__subtitle {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 24px !important;
    line-height: 1.3 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 580px !important;
    margin: 0 !important;
}

/* Light theme subtitle - dark gray text */
body:not(.dark) .home-hero__subtitle {
    color: #828282 !important;
}
.title-green {
  color: var(--green-color) !important;
  -webkit-text-fill-color: var(--green-color) !important;
  background: none !important;
}
.home-hero__cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    background: var(--green-color) !important;
    color: #ffffff !important;
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 18px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.home-hero__cta:hover {
    background: linear-gradient(90deg, #2ABAA9 0%, #25D69B 100%) !important;
    transform: translateY(-2px) !important;
}

/* Light theme CTA button - green gradient */
body:not(.dark) .home-hero__cta {
    background: linear-gradient(90deg, #2abaa9 0%, #25d69b 100%) !important;
    color: #ffffff !important;
}

body:not(.dark) .home-hero__cta:hover {
    background: linear-gradient(90deg, #2ABAA9 0%, #25D69B 100%) !important;
    transform: translateY(-2px) !important;
}

.home-advantages {
    padding: 10px 160px 80px 160px !important;
    background-color: #000000 !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
}

body:not(.dark) .home-advantages {
    background-color: #f4f7f6 !important;
}

.home-advantages__title {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 40px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    background: linear-gradient(180deg, #dedede 73.358%, #010000 123.05%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 0 0 22px !important;
}

/* Light theme advantages title - dark gradient */
body:not(.dark) .home-advantages__title {
    background: linear-gradient(168.643deg, #1F1F1F 43.889%, #5C5C5C 66.083%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.home-advantages__grid {
    display: grid !important;
    grid-template-columns: minmax(0, 661px) minmax(0, 268px) minmax(0, 661px) !important;
    grid-template-rows: auto auto !important;
    gap: 10px !important;
    position: relative !important;
    max-width: 1600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* First row: glass card (wide 929px = cols 1-2) then gradient card (narrow 661px = col 3) */
.home-advantages__card:nth-child(1) {
    grid-column: 1 / 3 !important;
    grid-row: 1 / 2 !important;
}

.home-advantages__card:nth-child(2) {
    grid-column: 3 / 4 !important;
    grid-row: 1 / 2 !important;
}

/* Second row: gradient card (narrow 661px = col 1) then glass card (wide 929px = cols 2-3) */
.home-advantages__card:nth-child(3) {
    grid-column: 1 / 2 !important;
    grid-row: 2 / 3 !important;
}

.home-advantages__card:nth-child(4) {
    grid-column: 2 / 4 !important;
    grid-row: 2 / 3 !important;
}

.home-advantages__card {
    height: 200px !important;
    border-radius: 30px !important;
    padding: 30px !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.home-advantages__card--gradient {
    background: linear-gradient(70.29deg, #1abaa8 1.5988%, #92ffdf 56.41%, #40ffbf 99.165%) !important;
    color: #101010 !important;
}

.home-advantages__card--glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.2) 42.308%, rgba(255, 255, 255, 0.05) 100%) !important;
    color: #ffffff !important;
}

/* Light theme glass cards - white background with border */
body:not(.dark) .home-advantages__card--glass {
    background: #ffffff !important;
    border: 1px solid #eee !important;
    color: #101010 !important;
}

.home-advantages__card-title {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 400 !important;
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin: 0 0 16px !important;
    position: relative !important;
    z-index: 2 !important;
}

.home-advantages__card-text {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 386px !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Light theme glass card text - dark gray */
body:not(.dark) .home-advantages__card--glass .home-advantages__card-text {
    color: #828282 !important;
}

.home-advantages__card--gradient .home-advantages__card-text {
    color: #101010 !important;
}

.home-advantages__card--gradient .home-advantages__card-title {
    color: #101010 !important;
}

.home-advantages__card-illustration {
    position: absolute !important;
    width: 200px !important;
    height: 525px !important;
    z-index: 1 !important;
    pointer-events: none !important;
    object-fit: contain !important;
}

.home-advantages__card-illustration--key {
    right: 0 !important;
    top: -161px !important;
    /* transform: rotate(180deg) scaleY(-1) !important; */
}

.home-advantages__card-illustration--safe {
    right: -30px !important;
    top: -161px !important;
    transform: rotate(180deg) scaleY(-1) !important;
}

.home-faq {
    padding: 0 160px 50px 160px !important;
    background-color: #030712 !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
}

body:not(.dark) .home-faq {
    background-color: #f4f7f6 !important;
}

/* FAQ Header */
.home-faq__header {
    text-align: center !important;
    margin-bottom: 24px !important;
}

.home-faq__title {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 40px !important;
    line-height: 1 !important;
    text-align: center !important;
    background: linear-gradient(180deg, #dedede 73.358%, #010000 123.05%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 0 0 8px !important;
}

/* Light theme FAQ title - dark gradient */
body:not(.dark) .home-faq__title {
    background: linear-gradient(168.643deg, #1F1F1F 43.889%, #5C5C5C 66.083%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.home-faq__subtitle {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Light theme FAQ subtitle - dark gray */
body:not(.dark) .home-faq__subtitle {
    color: #828282 !important;
}

/* FAQ Filters */
.home-faq__filters {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 32px !important;
    flex-wrap: wrap !important;
}

.home-faq__filter {
    padding: 8px 16px !important;
    border-radius: 8px !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

/* Light theme FAQ filters */
body:not(.dark) .home-faq__filter {
    border: 1px solid #ddd !important;
    color: black !important;
}

.home-faq__filter:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

/* Light theme FAQ filter hover */
body:not(.dark) .home-faq__filter:hover {
    background: #f0f0f0 !important;
    color: #101010 !important;
}
body:not(.dark) .home-faq__filter--active {
    color: white !important;
}
.home-faq__filter--active {
    background: var(--green-color) !important;
    border-color: var(--green-color) !important;
    color: #ffffff !important;
}

.home-faq__filter--active:hover {
    background: linear-gradient(90deg, #2ABAA9 0%, #25D69B 100%) !important;
}

.home-faq__list {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    max-width: 850px !important;
    margin: 0 auto !important;
}

.home-faq__item {
    background: transparent !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Light theme FAQ items - transparent background */
body:not(.dark) .home-faq__item {
    background: transparent !important;
}

.home-faq__item summary {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 60px !important;
    list-style: none !important;
    cursor: pointer !important;
}

.home-faq__item summary::-webkit-details-marker {
    display: none !important;
}

/* Green line indicator */
.home-faq__item-indicator {
    width: 4px !important;
    height: 24px !important;
    background: var(--green-color) !important;
    border-radius: 2px !important;
    margin-right: 20px !important;
    flex-shrink: 0 !important;
}

.home-faq__item-text {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    color: #ffffff !important;
    flex: 1 !important;
}

/* Light theme FAQ text - dark text */
body:not(.dark) .home-faq__item-text {
    color: #101010 !important;
}

.home-faq__item-icon {
    width: 24px !important;
    height: 24px !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

/* Light theme FAQ icon - dark color */
body:not(.dark) .home-faq__item-icon {
    color: #101010 !important;
}

.home-faq__item[open] .home-faq__item-icon .plus-line {
    opacity: 0 !important;
}

.home-faq__item[open] .home-faq__item-icon {
    transform: rotate(0deg) !important;
}

.home-faq__item-content {
    padding: 0 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out, padding 0.4s ease-out !important;
}

.home-faq__item[open] .home-faq__item-content {
    opacity: 1 !important;
    padding: 0px 0 30px !important;
}

/* Light theme FAQ content - dark gray text */
body:not(.dark) .home-faq__item-content {
    color: #828282 !important;
}

/* Nested FAQ Subitems */
.home-faq__subitems {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 10px !important;
}

.home-faq__subitem {
    border-radius: 15px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 0 15px !important;
    transition: background 0.2s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    interpolate-size: allow-keywords;
}

.home-faq__subitem::details-content {
    block-size: 0;
    overflow: hidden;
    transition: block-size 0.3s ease, content-visibility 0.3s ease;
    transition-behavior: allow-discrete;
}

.home-faq__subitem[open]::details-content {
    block-size: auto;
}

body:not(.dark) .home-faq__subitem {
    background: #f9f9f9 !important;
    border: 1px solid #eee !important;
}

summary.home-faq__subitem-summary {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 50px !important;
    list-style: none !important;
    cursor: pointer !important;
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 10px 0 !important;
    gap: 10px !important;
}

.home-faq__subitem-summary > span {
    flex: 1 !important;
}

body:not(.dark) summary.home-faq__subitem-summary {
    color: #101010 !important;
}

.home-faq__subitem-icon {
    width: 20px !important;
    height: 20px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

body:not(.dark) .home-faq__subitem-icon {
    color: #828282 !important;
}

.home-faq__subitem[open] .home-faq__subitem-icon .plus-line {
    opacity: 0 !important;
}

.home-faq__subitem-arrow {
    width: 24px !important;
    height: 24px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: transform 0.3s ease !important;
    flex-shrink: 0 !important;
    margin-left: 10px !important;
}

body:not(.dark) .home-faq__subitem-arrow {
    color: rgba(16, 16, 16, 0.7) !important;
}

.home-faq__subitem[open] .home-faq__subitem-arrow {
    transform: rotate(180deg) !important;
}

.home-faq__subitem-content {
    padding: 0 0 15px 0 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin-top: 5px !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out !important;
}

.home-faq__subitem[open] .home-faq__subitem-content {
    opacity: 1 !important;
}

body:not(.dark) .home-faq__subitem-content {
    color: #828282 !important;
}

/* CTA Banner Styles - Matching Article Page */
.article-cta-banner {
    position: relative !important;
    padding: 40px 50px 40px 110px !important;
    border-radius: 50px !important;
    margin: 0px auto 10px auto !important;
    width: 100% !important;
    max-width: 1820px !important;
    overflow: hidden !important;
    min-height: max-content !important;
    display: flex !important;
    background: radial-gradient(111% 94% at 79% 11%, #018f7a 25%, #030712 100%) !important;
}

.article-cta-banner::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: -50px !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url("/images/coins/mobileOnRock.png") !important;
    background-size: contain !important;
    background-position: right center !important;
    background-repeat: no-repeat !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.article-cta-banner__content {
    max-width: 1057px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    z-index: 2 !important;
    position: relative !important;
}

.article-cta-banner__title {
    max-width: 400px !important;
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 40px !important;
    line-height: 1 !important;
    background: linear-gradient(180deg, #dedede 73.358%, #010000 123.05%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 0 !important;
}

/* Light theme banner title */
body:not(.dark) .article-cta-banner__title {
    background: linear-gradient(180deg, #dedede 73.358%, #010000 123.05%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.article-cta-banner__text {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 22px !important;
    line-height: 1.3 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 540px !important;
    margin: 0 !important;
}

/* Light theme banner text */
body:not(.dark) .article-cta-banner__text {
    color: #828282 !important;
}

.article-cta-banner__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px 40px !important;
    border-radius: 50px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 42.308%, rgba(255, 255, 255, 0.05) 100%) !important;
    color: #ffffff !important;
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 20px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    width: fit-content !important;
}

.article-cta-banner__button:hover {
    background: linear-gradient(90deg, #2ABAA9 0%, #25D69B 100%) !important;
    transform: translateY(-2px) !important;
}

/* Light theme banner button */
body:not(.dark) .article-cta-banner__button {
    background: linear-gradient(90deg, #2abaa9 0%, #25d69b 100%) !important;
    color: #ffffff !important;
}

body:not(.dark) .article-cta-banner__button:hover {
    background: linear-gradient(90deg, #2ABAA9 0%, #25D69B 100%) !important;
    transform: translateY(-2px) !important;
}

/* Responsive adjustments for banner width */
@media screen and (max-width: 2140px) {
    .article-cta-banner {
        width: calc(100% - 310px) !important;
        max-width: 1820px !important;
    }
}

@media screen and (max-width: 1820px) {
    .article-cta-banner {
        width: calc(100% - 60px) !important;
    }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
    .article-cta-banner {
        width: calc(100% - 32px) !important;
        margin: 80px 16px 20px 16px !important;
        padding: 40px 20px !important;
    }
}

@media screen and (max-width: 1650px) {
    .home-advantages__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.268fr) minmax(0, 1fr) !important;
        gap: 10px !important;
        max-width: calc(100% - 40px) !important;
    }
}
@media screen and (max-width: 1300px) {
    .article-cta-banner__title {
        font-size: 30px !important;
    }
    .article-cta-banner__text {
        font-size: 18px !important;
        max-width: 515px !important;
    }
    .article-cta-banner__button {
        font-size: 18px !important;
        padding: 20px 40px !important;
    }
}
@media screen and (max-width: 1200px) {
    .home-hero__title { font-size: 60px !important; }
    .home-hero__subtitle { font-size: 24px !important; }
    .home-advantages__title { font-size: 60px !important; }
    .home-faq__title { font-size: 60px !important; }
    .home-advantages__grid { 
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto auto auto !important;
        gap: 10px !important;
    }
    .home-advantages__card:nth-child(1),
    .home-advantages__card:nth-child(2),
    .home-advantages__card:nth-child(3),
    .home-advantages__card:nth-child(4) {
        grid-column: 1 / 2 !important;
        margin-left: 0 !important;
    }
    .home-advantages__card:nth-child(1) { grid-row: 1 / 2 !important; }
    .home-advantages__card:nth-child(2) { grid-row: 2 / 3 !important; }
    .home-advantages__card:nth-child(3) { grid-row: 3 / 4 !important; }
    .home-advantages__card:nth-child(4) { grid-row: 4 / 5 !important; }
}
@media screen and (min-width: 1550px) and (max-width: 1760px) {
    .header.header-section {
        padding: 10px 60px 10px 60px !important;
    }
}
@media screen and (min-width: 1500px) and (max-width: 1549px) {
    .header.header-section {
        padding: 10px 120px 10px 120px !important;
    }
}
@media screen and (min-width: 1350px) and (max-width: 1449px) {
    .header.header-section {
        padding: 10px 120px 10px 120px !important;
    }
}
@media screen and (min-width: 1250px) and (max-width: 1300px) {
    .header.header-section {
        padding: 10px 110px 10px 110px !important;
    }
}
/* Tablet Responsive Styles (577px - 1024px) */
@media screen and (min-width: 577px) and (max-width: 1024px) {
    .home-hero {
        padding: 60px 40px 80px !important;
        min-height: auto !important;
    }

    .home-hero__content {
        max-width: 600px !important;
        gap: 30px !important;
    }

    .home-hero__title {
        font-size: 50px !important;
    }

    .home-hero__subtitle {
        font-size: 20px !important;
        max-width: 600px !important;
    }

    .home-hero__cta {
        padding: 20px 50px !important;
        font-size: 20px !important;
    }

    .home-advantages {
        padding: 60px 40px !important;
    }

    .home-advantages__title {
        font-size: 50px !important;
    }

    .home-advantages__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        max-width: 100% !important;
    }

    .home-faq {
        padding: 0 40px 20px !important;
    }

    .home-faq__title {
        font-size: 50px !important;
    }
}

@media screen and (max-width: 576px) {
    /* Mobile Hero Section - Figma Design */
    .mobile-nav-open .header-mobile-only {
        display: block !important;
    }
    .home-hero {
        padding: 0 !important;
        min-height: auto !important;
        position: relative !important;
        background-color: #030712 !important;
        /* background-image: url("/images/mobileHomeBg.png") !important; */
        /* background-image: url("/images/mobileHomeBg.png") !important; */
        background-size: 170% !important;
        background-position: center bottom !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        overflow: visible !important;
        padding-bottom: 0 !important;
    }
    .header-section .header__row {
        padding: 0 !important;
    }
    .home-hero::after {
        /* background: none !important; */
        /* background-image: url("/images/coins/bgIconsMobilesvg.svg") !important; */
        /* background-size: 190%; */
    }
    .home-bg-clr-div {
        height: 600px !important;
    }
    body:not(.dark) .home-hero {
        background-color: #f4f7f6 !important;
        /* background-image: url("/images/mobileHomeBg.png") !important; */
        /* background-size: 170% !important; */
        /* background-position: center bottom !important; */
        /* background-repeat: no-repeat !important; */
        /* background-attachment: scroll !important; */
    }

    .home-hero__content {
        padding-top: 40px !important;
        gap: 10px !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 343px !important;
        margin: 0 auto !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-bottom: 270px !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .home-hero__title {
        font-size: 32px !important;
        line-height: 1.1 !important;
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 0px !important;
        background: linear-gradient(180deg, #dedede 73.358%, #010000 123.05%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    body:not(.dark) .home-hero__title {
        /* background: linear-gradient(180deg, #dedede 73.358%, #010000 123.05%) !important; */
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    .home-hero__subtitle {
        font-size: 16px !important;
        line-height: 1.4 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 10px !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .home-hero__cta {
        width: auto !important;
        min-width: 200px !important;
        padding: 18px 40px !important;
        font-size: 18px !important;
        margin: 0 auto 60px auto !important;
        background: linear-gradient(90deg, #2abaa9 0%, #25d69b 100%) !important;
        color: #ffffff !important;
        border-radius: 50px !important;
        font-weight: 300 !important;
    }

    body:not(.dark) .home-hero__cta {
        background: linear-gradient(90deg, #2abaa9 0%, #25d69b 100%) !important;
        color: #ffffff !important;
    }

    .home-hero__bg {
        display: none !important;
    }

    /* Mobile Advantages Section - Figma Design */
    .home-advantages {
        padding: 40px 16px 40px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .home-advantages__title {
        font-size: 30px !important;
        margin-bottom: 35px !important;
        text-align: center !important;
    }

    .home-advantages__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .home-advantages__card {
        width: 100% !important;
        height: auto !important;
        min-height: 127px !important;
        padding: 20px !important;
        border-radius: 20px !important;
    }
    .home-advantages__card:nth-child(1) {
        order: 1;
    }
    .home-advantages__card:nth-child(2) {
        order: 2;
    }
    .home-advantages__card:nth-child(3) {
        order: 4;
    }
    .home-advantages__card:nth-child(4) {
        order: 3;
    }
    .home-advantages__card:nth-child(1) {
        height: max-content !important;
        min-height: max-content !important;
    }

    .home-advantages__card:nth-child(2),
    .home-advantages__card:nth-child(4) {
        height: max-content !important;
        min-height: max-content !important;
    }

    .home-advantages__card:nth-child(3) {
        height: max-content !important;
        min-height: max-content !important;
    }

    .home-advantages__card-title {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }

    .home-advantages__card-text {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    .home-advantages__card-illustration {
        width: 120px !important;
        height: 300px !important;
    }

    .home-advantages__card-illustration--key {
        right: -20px !important;
        top: -80px !important;
    }

    .home-advantages__card-illustration--safe {
        right: -20px !important;
        top: -80px !important;
    }

    /* Mobile FAQ Section */
    .home-faq {
        padding: 0 16px 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .home-faq__title {
        font-size: 30px !important;
        margin-bottom: 25px !important;
        text-align: center !important;
    }

    .home-faq__list {
        gap: 8px !important;
    }

    .home-faq__item {
        padding: 0 16px !important;
        min-height: 60px !important;
        border-radius: 15px !important;
    }

    .home-faq__item-number {
        width: 30px !important;
        height: 30px !important;
        font-size: 16px !important;
        margin-right: 12px !important;
    }

    .home-faq__item-text {
        font-size: 18px !important;
    }

    .home-faq__item-arrow {
        width: 24px !important;
        height: 24px !important;
    }

    .home-faq__item-content {
        font-size: 16px !important;
        padding: 0 !important;
    }
    
    .home-faq__item[open] .home-faq__item-content {
        padding: 15px 0 20px !important;
    }

    .home-faq__subitem {
        padding: 0 12px !important;
        border-radius: 12px !important;
    }

    .home-faq__subitem-summary {
        font-size: 16px !important;
        min-height: 45px !important;
        padding: 8px 0 !important;
    }

    .home-faq__subitem-arrow {
        width: 20px !important;
        height: 20px !important;
    }

    .home-faq__subitem-content {
        font-size: 14px !important;
        padding: 0 0 12px 0 !important;
    }

    /* Mobile CTA Banner - Figma Design Exact Match */
    .article-cta-banner {
        margin: 80px 16px 20px 16px !important;
        padding: 0 !important;
        height: 650px !important;
        min-height: 650px !important;
        max-height: 650px !important;
        border-radius: 30px !important;
        overflow: hidden !important;
        position: relative !important;
        width: calc(100% - 32px) !important;
        max-width: 100% !important;
        display: block !important;
        margin-bottom: 20px !important;
    }

    .article-cta-banner::before {
        right: 0px !important;
        background-size: 120% !important;
        background-position: bottom center !important;
    }

    .article-cta-banner__content {
        padding: 0 !important;
        gap: 10px !important;
        width: calc(100% - 50px) !important;
        max-width: 303px !important;
        margin: 0 auto !important;
        position: absolute !important;
        top: 30px !important;
        left: 25px !important;
        right: 25px !important;
        transform: none !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
        z-index: 2 !important;
    }

    .article-cta-banner__title {
        font-size: 30px !important;
        line-height: 1 !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .article-cta-banner__text {
        font-size: 16px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        width: 265px !important;
        max-width: 265px !important;
        margin: 0 auto !important;
    }

    body:not(.dark) .article-cta-banner__text {
        color: #ffffff !important;
    }

    .article-cta-banner__button {
        width: 255px !important;
        padding: 20px 30px !important;
        font-size: 18px !important;
        margin: 0 !important;
        position: absolute !important;
        top: 200px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 2 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* ==========================================================================
   HOME FEATURES SECTION - New Protected Trades, Secure Escrow, Verified Sellers
   ========================================================================== */

.home-features {
    padding: 30px 160px 60px 160px !important;
    background-color: #030712 !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
}

body:not(.dark) .home-features {
    background-color: #f4f7f6 !important;
}

.home-features__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.home-features__card {
    background: linear-gradient(180deg, #121722 0%, #030712 100%) !important;
    border-radius: 20px !important;
    padding: 30px 30px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: 216px !important;
}

/* Light theme cards - white background */
body:not(.dark) .home-features__card {
    background: #ffffff !important;
    border: 1px solid #eee !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.home-features__card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

body:not(.dark) .home-features__card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.home-features__card-icon {
    width: 60px !important;
    height: 60px !important;
    background: #092A2A !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
}

/* Light theme icon background */
body:not(.dark) .home-features__card-icon {
    background: rgba(16, 185, 129, 0.08) !important;
}

.home-features__card-icon svg {
    width: 28px !important;
    height: 28px !important;
    stroke: #2ABAA9 !important;
}

.home-features__card-title {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    margin: 0 0 12px !important;
}

/* Light theme card title */
body:not(.dark) .home-features__card-title {
    color: #101010 !important;
}

.home-features__card-description {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
}

/* Light theme card description */
body:not(.dark) .home-features__card-description {
    color: #828282 !important;
}

/* Mobile responsive for features section */
@media screen and (max-width: 1100px) {
    .home-features {
        padding: 60px 80px !important;
    }
    
    .home-features__grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 600px !important;
    }
    
    .home-features__card {
        padding: 30px 25px !important;
        min-height: 160px !important;
    }
}

@media screen and (max-width: 768px) {
    .home-features {
        padding: 40px 20px !important;
    }
    
    .home-features__card {
        padding: 25px 20px !important;
        min-height: 140px !important;
    }
    
    .home-features__card-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 15px !important;
    }
    
    .home-features__card-icon svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    .home-features__card-title {
        font-size: 18px !important;
    }
    
    .home-features__card-description {
        font-size: 15px !important;
    }
}

/* ==========================================================================
   HOME HOW IT WORKS SECTION - 5 Steps Guide
   ========================================================================== */

.home-how-it-works {
    padding: 0 160px 80px 160px !important;
    background-color: #030712 !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
}

body:not(.dark) .home-how-it-works {
    background-color: #f4f7f6 !important;
}

.home-how-it-works__header {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.home-how-it-works__title {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 40px !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    margin: 0 0 16px !important;
}

body:not(.dark) .home-how-it-works__title {
    color: #101010 !important;
}

.home-how-it-works__subtitle {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

body:not(.dark) .home-how-it-works__subtitle {
    color: #828282 !important;
}

.home-how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Top 3 cards */
.home-how-it-works__steps > *:nth-child(-n+3) {
    grid-column: span 2;
}

/* Bottom 2 cards (wide like screenshot) */
.home-how-it-works__steps > *:nth-child(n+4) {
    grid-column: span 3;
}
.home-how-it-works__step-visual.blackBGRound.fourth {
    width: 50% !important;
}
.home-how-it-works__step {
    background: linear-gradient(180deg, #121722 0%, #030712 100%) !important;
    border-radius: 20px !important;
    padding: 50px 30px 20px 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    min-height: 380px !important;
    display: flex !important;
    flex-direction: column !important;
}

body:not(.dark) .home-how-it-works__step {
    background: #ffffff !important;
    border: 1px solid #eee !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.home-how-it-works__step:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

body:not(.dark) .home-how-it-works__step:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.home-how-it-works__step-number {
    position: absolute !important;
    top: 15px !important;
    left: 30px !important;
    width: 30px !important;
    height: 30px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    color: #ffffff !important;
}

.home-how-it-works__step-title {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    margin: 0 0 12px !important;
}

body:not(.dark) .home-how-it-works__step-title {
    color: #101010 !important;
}

.home-how-it-works__step-description {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 0 10px !important;
}

body:not(.dark) .home-how-it-works__step-description {
    color: #828282 !important;
}

.home-how-it-works__step-visual {
    margin-top: 20px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}
.blackBGRound {
    background-color: #030712;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #1E2939;
    width: 85%;
}
body:not(.dark) .blackBGRound{
    background-color: #fff !important;
    border: none;
}
body:not(.dark) .home-how-it-works__cards-wrapper {
    background: #fff !important;
}
/* Step 1: Card-style Buy/Sell Buttons */
.home-how-it-works__step-visual--cards {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

.home-how-it-works__cards-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    background: #030712 !important;
    padding: 16px !important;
    border-radius: 16px !important;
}

.home-how-it-works__card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    flex: 1 !important;
    padding: 24px 16px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: #0f172a !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    min-width: 100px !important;
}

body:not(.dark) .home-how-it-works__card {
    border: 1px solid #e5e5e5 !important;
    background: #f8f9fa !important;
}

.home-how-it-works__card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-2px) !important;
}

body:not(.dark) .home-how-it-works__card:hover {
    background: #f0f0f0 !important;
}

.home-how-it-works__card-icon-bg {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.home-how-it-works__card-icon-bg--sell {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #ef4444 !important;
}

.home-how-it-works__card-icon-bg--buy {
    background: rgba(16, 185, 129, 0.15) !important;
    color: #10b981 !important;
}

.home-how-it-works__card-icon-bg svg {
    width: 20px !important;
    height: 20px !important;
}

.home-how-it-works__card-label {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    color: #ffffff !important;
}

body:not(.dark) .home-how-it-works__card-label {
    color: #101010 !important;
}

/* Step 2: Offers */
.home-how-it-works__offers {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    flex: 1 !important;
}

.home-how-it-works__offer {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}
.home-how-it-works__offer.buy {
    background: #092A2A !important;
}
body:not(.dark) .home-how-it-works__offer {
    background: #f9f9f9 !important;
    border: 1px solid #eee !important;
}

.home-how-it-works__offer-header {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.home-how-it-works__offer-name {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    color: #ffffff !important;
}

body:not(.dark) .home-how-it-works__offer-name {
    color: #101010 !important;
}

.home-how-it-works__offer-price {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #2ABAA9 !important;
}

.home-how-it-works__offer-details {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

body:not(.dark) .home-how-it-works__offer-details {
    color: #828282 !important;
}

.home-how-it-works__offer-btn {
    background: #2ABAA9 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}
.home-how-it-works__offer-btn.normalPrice {
    background: #1E2939 !important;
}
.home-how-it-works__offer-btn:hover {
    background: #25d69b !important;
}

/* Step 3: Escrow */
.home-how-it-works__escrow {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    gap: 8px !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    flex: 1 !important;
}

body:not(.dark) .home-how-it-works__escrow {
    background: #f9f9f9 !important;
    border: 1px solid #eee !important;
}

.home-how-it-works__lock-icon {
    width: 40px !important;
    height: 40px !important;
    background: #092A2A !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #2ABAA9 !important;
}

.home-how-it-works__escrow-text {
    flex: 1 !important;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-how-it-works__escrow-title {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #ffffff !important;
    margin-bottom: 4px !important;
}

body:not(.dark) .home-how-it-works__escrow-title {
    color: #101010 !important;
}

.home-how-it-works__escrow-subtitle {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

body:not(.dark) .home-how-it-works__escrow-subtitle {
    color: #828282 !important;
}

.home-how-it-works__status {
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
}

.home-how-it-works__status--active {
    /* background: rgba(16, 185, 129, 0.2) !important; */
    color: #2ABAA9 !important;
    /* border: 1px solid rgba(16, 185, 129, 0.3) !important; */
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 !important;
}

/* Step 4: Confirm */
.home-how-it-works__confirm {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    gap: 8px !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    flex: 1 !important;
}

body:not(.dark) .home-how-it-works__confirm {
    background: #f9f9f9 !important;
    border: 1px solid #eee !important;
}

.home-how-it-works__dollar-icon {
    width: 40px !important;
    height: 40px !important;
    /* background: #092A2A !important; */
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #2ABAA9 !important;
}

.home-how-it-works__confirm-text {
    flex: 1 !important;
    align-items: center;
}

.home-how-it-works__confirm-title {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #ffffff !important;
    margin-bottom: 4px !important;
    text-align: center;
}

body:not(.dark) .home-how-it-works__confirm-title {
    color: #101010 !important;
}

.home-how-it-works__confirm-subtitle {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

body:not(.dark) .home-how-it-works__confirm-subtitle {
    color: #828282 !important;
}

/* Step 5: Rating */
.home-how-it-works__rating {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 8px !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    flex: 1 !important;
    width: 50% !important;
}

body:not(.dark) .home-how-it-works__rating {
    background: #f9f9f9 !important;
    border: 1px solid #eee !important;
}

.home-how-it-works__rating-header {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between !important;
    align-items: center !important;
}

.home-how-it-works__rating-title {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    color: #ffffff !important;
}

body:not(.dark) .home-how-it-works__rating-title {
    color: #101010 !important;
}

.home-how-it-works__rating-score {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #2ABAA9 !important;
}

.home-how-it-works__stars {
    display: flex !important;
    gap: 4px !important;
}

.home-how-it-works__star {
    flex-shrink: 0 !important;
}

.home-how-it-works__star--filled {
    color: #2ABAA9 !important;
}

.home-how-it-works__star--empty {
    color: rgba(255, 255, 255, 0.2) !important;
}

body:not(.dark) .home-how-it-works__star--empty {
    color: #d1d5db !important;
}

.home-how-it-works__rate-btn {
    background: #2ABAA9 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 7px 10px !important;
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    align-self: flex-start !important;
    width: 100%;
}

.home-how-it-works__rate-btn:hover {
    background: #25d69b !important;
}

/* Mobile responsive for how it works section */
@media screen and (max-width: 1100px) {
    .home-how-it-works {
        padding: 60px 80px !important;
    }
    
    .home-how-it-works__steps {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .home-how-it-works__step {
        padding: 25px 20px !important;
        min-height: 200px !important;
    }
    
    .home-how-it-works__step-number {
        top: 15px !important;
        left: 20px !important;
        width: 24px !important;
        height: 24px !important;
        font-size: 12px !important;
    }
}

@media screen and (max-width: 768px) {
    .home-how-it-works {
        padding: 40px 20px !important;
    }
    
    .home-how-it-works__header {
        margin-bottom: 40px !important;
    }
    
    .home-how-it-works__title {
        font-size: 32px !important;
    }
    
    .home-how-it-works__subtitle {
        font-size: 16px !important;
    }
    
    .home-how-it-works__step {
        padding: 20px 16px !important;
        min-height: 180px !important;
    }
    
    .home-how-it-works__step-number {
        top: 12px !important;
        left: 16px !important;
        width: 22px !important;
        height: 22px !important;
        font-size: 11px !important;
    }
    
    .home-how-it-works__step-title {
        font-size: 16px !important;
        margin: 28px 0 8px !important;
    }
    
    .home-how-it-works__step-description {
        font-size: 13px !important;
        margin: 0 0 8px !important;
    }
    
    .home-how-it-works__step-visual {
        margin-top: 12px !important;
    }
    
    .home-how-it-works__btn {
        padding: 10px 20px !important;
        font-size: 14px !important;
        margin-right: 8px !important;
    }
    
    .home-how-it-works__lock-icon,
    .home-how-it-works__dollar-icon {
        width: 50px !important;
        height: 50px !important;
    }
}

/* Why FASTP2P Section */
.home-why-fastp2p {
    padding: 10px 20px 80px 20px !important;
    background: #030712 !important;
    text-align: center !important;
}
body:not(.dark) .home-why-fastp2p {
    background: #f4f7f6 !important;
}
.home-why-fastp2p__header {
    max-width: 800px !important;
    margin: 0 auto 60px !important;
}

.home-why-fastp2p__title {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 400 !important;
    font-size: 40px !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    margin: 0 0 20px !important;
}
body:not(.dark) .home-why-fastp2p__title {
    color: #000000 !important;
}
body:not(.dark) .home-why-fastp2p__subtitle {
    color: #000000 !important;
}
.home-why-fastp2p__subtitle {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
}

.home-why-fastp2p__card {
    max-width: 1400px !important;
    margin: 0 auto !important;
    background: linear-gradient(103.79deg, #2ABAA9 -10.85%, #101828 100.67%) !important;
    border-radius: 16px !important;
    padding: 60px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 40px !important;
    position: relative;
    overflow: hidden !important;
    min-height: 400px;
}
.home-why-fastp2p__card::after {
    content: "";
    background-image: url(/images/whyBGImg.png);
    background-size: 75% auto !important;
    background-position: 10% center !important;
    background-repeat: no-repeat !important;
    position: absolute !important;
    top: 60px !important;
    right: auto !important;
    left: -60px !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0.4 !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.home-why-fastp2p__left {
    flex: 1 !important;
    text-align: left !important;
    position: relative !important;
    z-index: 1;
    align-self: flex-start !important;
}

.home-why-fastp2p__main-title {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 700 !important;
    font-size: 36px !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    margin: 0 0 30px !important;
    position: relative !important;
    z-index: 1 !important;
}

.home-why-fastp2p__cta {
    display: inline-block !important;
    padding: 16px 32px !important;
    background: linear-gradient(103.79deg, #2ABAA9 -10.85%, #25D69B 100.67%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 28px !important;
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 1 !important;
    border: none !important;
}

.home-why-fastp2p__cta:hover {
    background: #25d69b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(42, 186, 169, 0.3) !important;
}

.home-why-fastp2p__right {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.home-why-fastp2p__feature {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 10px 10px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    min-height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative;
    z-index: 2 !important;
}

.home-why-fastp2p__feature:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateX(5px) !important;
}

.home-why-fastp2p__feature-icon {
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    flex-shrink: 0 !important;
}

.home-why-fastp2p__feature-icon svg {
    color: #2ABAA9 !important;
}

.home-why-fastp2p__feature-text {
    font-family: 'Helvetica', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    color: #ffffff !important;
}

/* Why FASTP2P Responsive Design */
@media (max-width: 768px) {
    .home-why-fastp2p {
        padding: 40px 16px !important;
    }
    
    .home-why-fastp2p__title {
        font-size: 28px !important;
    }
    
    .home-why-fastp2p__subtitle {
        font-size: 14px !important;
        margin-bottom: 30px !important;
    }
    
    .home-why-fastp2p__card {
        flex-direction: column !important;
        padding: 30px 20px !important;
        gap: 24px !important;
        min-height: auto !important;
    }
    
    .home-why-fastp2p__card::after {
        background-size: 100% auto !important;
        background-position: bottom center !important;
        opacity: 0.3 !important;
    }
    
    .home-why-fastp2p__main-title {
        font-size: 22px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .home-why-fastp2p__left,
    .home-why-fastp2p__right {
        text-align: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .home-why-fastp2p__right {
        gap: 12px !important;
    }
    
    .home-why-fastp2p__feature {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px 16px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .home-why-fastp2p__cta {
        padding: 14px 28px !important;
        font-size: 15px !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 480px) {
    .home-why-fastp2p {
        padding: 30px 12px !important;
    }
    
    .home-why-fastp2p__title {
        font-size: 24px !important;
    }
    
    .home-why-fastp2p__card {
        padding: 24px 16px !important;
        border-radius: 20px !important;
    }
    
    .home-why-fastp2p__main-title {
        font-size: 18px !important;
    }
    
    .home-why-fastp2p__feature {
        padding: 12px 14px !important;
    }
    
    .home-why-fastp2p__feature-icon {
        width: 36px !important;
        height: 36px !important;
    }
    
    .home-why-fastp2p__feature-text {
        font-size: 13px !important;
    }
    
    .home-why-fastp2p__cta {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
}
