:root {
    --catb-bg: #D9F232; /* The bright lime color */
    --catb-dark: #111111;
    --catb-white: #ffffff;
    --catb-gray: #f4f4f4;
}

.catb-hero-wrapper {
    background-color: var(--catb-bg);
    padding: 80px 5%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    position: relative;
}

.catb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

/* Content Styles */
.catb-content {
    position: relative;
}

.catb-main-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: var(--catb-dark);
    margin-bottom: 24px;
    font-weight: 800;
    position: relative;
}

.catb-star-icon {
    position: absolute;
    top: -44px;
    right: 9%;
    font-size: 0.7em;
}

.catb-description {
    font-size: 1.1rem;
    color: var(--catb-dark);
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Button & Link */
.catb-action-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.catb-btn-primary {
    background: var(--catb-dark);
    color: var(--catb-white);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
}

.catb-btn-primary:hover {
    transform: scale(1.05);
}

.catb-btn-icon {
    width: 20px;
}

.catb-link-more {
    color: var(--catb-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 10px;
}

/* Mobile Mockup */
.catb-visual {
    perspective: 1000px;
}

.catb-phone-frame {
    background: var(--catb-dark);
    padding: 12px;
    border-radius: 40px;
    width: 300px;
    margin: 0 auto;
    box-shadow: 0 50px 100px rgba(0,0,0,0.15);
    transform: rotate(5deg);
    transition: transform 0.5s ease;
}

.catb-phone-screen {
    background: var(--catb-white);
    border-radius: 32px;
    height: 580px;
    overflow: hidden;
    padding: 20px;
}

.catb-app-title {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
}

.catb-stat-card {
    background: var(--catb-dark);
    color: white;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.catb-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--catb-bg);
}

.catb-stat-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 40px;
    margin-top: 10px;
}

.catb-bar {
    flex: 1;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

.catb-arb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--catb-gray);
}

.catb-coin-icon {
    width: 40px;
    height: 40px;
    background: var(--catb-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.catb-coin-info strong {
    display: block;
    font-size: 0.9rem;
}

.catb-coin-info span {
    font-size: 0.7rem;
    color: #666;
}

.catb-coin-gain {
    margin-left: auto;
    color: #00c853;
    font-weight: bold;
}

/* Decorative Arrow */
.catb-decorative-arrow {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 200px;
    height: 150px;
    opacity: 0.2;
    transform: rotate(-10deg);
}

/* Responsive */
@media (max-width: 992px) {
    .catb-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .catb-content, .catb-action-group {
        align-items: center;
    }
    .catb-phone-frame {
        transform: rotate(0deg) scale(0.9);
        margin-top: 40px;
    }
    .catb-decorative-arrow {
        display: none;
    }
}

:root {
    --arb-lime: #D1FF1A;
    --arb-bg-card: #F7F7F7;
    --arb-text: #111111;
    --arb-text-dim: #555555;
}

.arb-feat-section {
    padding: 100px 5%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.arb-feat-container {
    max-width: 1200px;
    margin: 0 auto;
}

.arb-feat-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 50px;
    color: var(--arb-text);
}

.arb-feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.arb-feat-card {
    background-color: var(--arb-bg-card);
    border-radius: 40px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    min-height: 280px;
    transition: transform 0.3s ease;
}

.arb-feat-card:hover {
    transform: translateY(-5px);
}

.arb-feat-card-content {
    flex: 1;
    z-index: 2;
    max-width: 65%;
}

.arb-feat-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--arb-text);
}

.arb-feat-card-text {
    font-size: 1rem;
    color: var(--arb-text-dim);
    line-height: 1.5;
    margin-bottom: 30px;
}

.arb-feat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--arb-text);
    font-weight: 700;
    font-size: 0.95rem;
}

.arb-feat-arrow {
    transition: transform 0.2s ease;
}

.arb-feat-link:hover .arb-feat-arrow {
    transform: translateX(5px);
}

/* Graphics Styling */
.arb-feat-graphic-box, .arb-feat-chart-box {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 180px;
    height: 180px;
}

/* Card 1 Graphics */
.arb-feat-shape-lime {
    background-color: var(--arb-lime);
    width: 140px;
    height: 180px;
    border-radius: 30px;
    position: absolute;
    right: 30px;
    bottom: 20px;
    transform: rotate(-10deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arb-feat-svg-swirl {
    width: 60px;
    opacity: 0.6;
}

.arb-feat-shape-black {
    background-color: var(--arb-text);
    width: 80px;
    height: 100px;
    border-radius: 20px 0 0 0;
    position: absolute;
    right: 0;
    bottom: 0;
}

/* Card 2 Graphics */
.arb-feat-chart-box {
    right: 20px;
    bottom: 20px;
    width: 140px;
    height: 140px;
}

.arb-feat-circular-chart {
    width: 100%;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .arb-feat-card {
        flex-direction: column;
        padding: 40px;
    }
    .arb-feat-card-content {
        max-width: 100%;
    }
    .arb-feat-graphic-box, .arb-feat-chart-box {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
        align-self: flex-end;
    }
}

:root {
    --arb-adv-lime: #D9F232;
    --arb-adv-dark: #111111;
    --arb-adv-gray: #666666;
    --arb-adv-font: 'Inter', sans-serif;
}

.arb-adv-wrapper {
    padding: 100px 5%;
    background-color: #ffffff;
    font-family: var(--arb-adv-font);
}

.arb-adv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

/* Header Styles */
.arb-adv-header {
    flex: 0 0 300px;
}

.arb-adv-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--arb-adv-dark);
}

.arb-adv-main-desc {
    font-size: 1.1rem;
    color: var(--arb-adv-gray);
    line-height: 1.6;
}

/* Grid Styles */
.arb-adv-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.arb-adv-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.arb-adv-card:hover {
    transform: translateY(-5px);
}

.arb-adv-icon-box {
    background-color: var(--arb-adv-lime);
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    /* Drawing the little 'tail' seen in your image icon */
    position: relative;
}

.arb-adv-icon-box::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--arb-adv-dark);
    top: -5px;
    left: 20px;
}

.arb-adv-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--arb-adv-dark);
}

.arb-adv-card-text {
    font-size: 0.95rem;
    color: var(--arb-adv-gray);
    line-height: 1.5;
}

/* Responsive Tablet */
@media (max-width: 992px) {
    .arb-adv-container {
        flex-direction: column;
    }
    .arb-adv-header {
        flex: none;
        margin-bottom: 40px;
    }
}

/* Responsive Mobile */
@media (max-width: 600px) {
    .arb-adv-grid {
        grid-template-columns: 1fr;
    }
    .arb-adv-main-title {
        font-size: 2.5rem;
    }
}

:root {
    --mkt-lime: #D9F232;
    --mkt-purple: #7B61FF;
    --mkt-dark: #111111;
    --mkt-gray: #f9f9f9;
    --mkt-text: #555555;
}

.mkt-trade-wrapper {
    /* Height controls how long the scroll takes (3 cards = 300vh) */
    height: 300vh; 
    position: relative;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.mkt-trade-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mkt-trade-layout {
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 50px;
}

/* Left Content */
.mkt-trade-left {
    flex: 1;
}

.mkt-trade-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--mkt-dark);
}

.mkt-trade-highlight {
    color: var(--mkt-purple);
}

/* Right Cards Container */
.mkt-trade-right {
    flex: 1.2;
    position: relative;
    height: 600px; /* Fixed container for cards to stack */
}

.mkt-trade-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    border: 1px solid #eee;
}

.mkt-trade-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
    z-index: 2;
}

/* Visual Mockups inside cards */
.mkt-trade-number {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.1;
    color: var(--mkt-purple);
}

.mkt-trade-visual {
    height: 250px;
    background: var(--mkt-gray);
    border-radius: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mkt-trade-chart-mockup {
    width: 70%;
    height: 140px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.mkt-trade-balance {
    position: absolute;
    bottom: 50px;
    left: 100px;
}

.mkt-trade-balance span { font-size: 0.8rem; color: #999; display: block; }
.mkt-trade-balance strong { font-size: 1.4rem; color: var(--mkt-dark); }

.mkt-purple { background: linear-gradient(135deg, #7B61FF, #AB9AFF); color: white; }
.mkt-dark { background: var(--mkt-dark); color: white; }

.mkt-trade-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--mkt-dark);
}

.mkt-trade-card-desc {
    color: var(--mkt-text);
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .mkt-trade-layout { flex-direction: column; text-align: center; }
    .mkt-trade-right { width: 100%; height: 500px; }
}

:root {
    --faq-purple: #7B61FF;
    --faq-dark: #111111;
    --faq-text: #666666;
    --faq-bg: #fdfdfd;
}

.arb-faq-wrapper {
    padding: 100px 5%;
    background-color: var(--faq-bg);
    font-family: 'Inter', sans-serif;
}

.arb-faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Styles */
.arb-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.arb-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.arb-faq-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--faq-dark);
    margin-bottom: 20px;
}

.arb-faq-highlight {
    color: var(--faq-purple);
}

.arb-faq-desc {
    max-width: 650px;
    margin: 0 auto;
    color: var(--faq-text);
    line-height: 1.6;
}

/* FAQ Grid & Items */
.arb-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.arb-faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    height: fit-content;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.arb-faq-item.active {
    box-shadow: 0 15px 30px rgba(123, 97, 255, 0.1);
    border-color: rgba(123, 97, 255, 0.2);
}

.arb-faq-trigger {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--faq-dark);
    transition: color 0.3s ease;
}

.arb-faq-trigger:hover {
    color: var(--faq-purple);
}

.arb-faq-plus {
    font-size: 1.4rem;
    color: var(--faq-dark);
    transition: transform 0.3s ease;
}

.arb-faq-item.active .arb-faq-plus {
    transform: rotate(45deg);
    color: var(--faq-purple);
}

.arb-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
}

.arb-faq-item.active .arb-faq-content {
    max-height: 200px; /* Adjust based on answer length */
    padding-bottom: 30px;
}

.arb-faq-content p {
    color: var(--faq-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 850px) {
    .arb-faq-grid {
        grid-template-columns: 1fr;
    }
}

.catb-action-group {
  display: block;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.catb-btn-primary,
.catb-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.catb-btn-primary {
    background: #0a0a0a;
    color: #fff;
    margin-right: 13px;
}

.catb-btn-primary:hover {
  background: #1a1a1a;
  color: #fff;
}

.catb-btn-secondary {
  background: transparent;
  color: #111;
  border: 2px solid #111;
}

.catb-btn-secondary:hover {
  background: #111;
  color: #fff;
}

.catb-btn-icon {
  font-size: 16px;
  line-height: 1;
}


.inside-img {
    position: absolute;
    bottom: 0%;
    top: -11%;
    width: 57%;
}
.inside-img_1 {
    position: absolute;
    bottom: 0%;
    top: -6%;
    width: 84%;
    left: 19px;
}