/* Base Theme Variables */
:root {
    --bg-black: rgb(5, 5, 6);
    --bg-surface: #09090B;
    --bg-card: #121214;
    --nmca-green: #3BCBFF;
    --secondary-gradient: linear-gradient(135deg, #6FE7FF, #3BCBFF, #1E6BFF);
    --nmca-blue: #FF00CC;
    --brand-gradient: linear-gradient(to right, #FF00CC, #A020F0);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border-color: rgba(255, 255, 255, 0.08);
    --transition-speed: 0.3s;
    --font-primary: 'Poppins', sans-serif;
    --section-padding: 80px 0;
    --section-padding-mobile: 30px 0;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[x-cloak] {
    display: none !important;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    vertical-align: middle;
    /* display: block; */
    max-width: 100%;
}

/* SVGs inside interactive elements must be inline so they sit beside text */
a svg,
button svg,
.btn svg,
.btn-icon {
    display: inline-block;
    vertical-align: middle;
}

/* Button icon sizing — used in People section Careers btn and HIW arrows */
.btn-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

body {
    background-color: var(--bg-black);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: #FFFFFF;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: #E2E8F0;
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 1rem;
}

/* Main Sections */
main {
    padding-top: 40px;
}

/* New Premium Hero Section */
.hero-section {
    position: relative;
    padding: 10rem 0 10rem;
    text-align: center;
    /* background-color: var(--bg-black); */
    background-image: url('../assets/images/hero/hero-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark overlay to keep text legible over background image */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.559);
    z-index: 0;
}

/* Ensure container sits above the overlay */
.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle at 50% 40%, rgba(7, 129, 254, 0.12) 0%, rgba(7, 129, 254, 0) 60%); */
    pointer-events: none;
    z-index: 1;
}

.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.hero-badge-premium span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.hero-title-premium {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .hero-title-premium {
        font-size: 5.5rem;
    }
}

.hero-desc-premium {
    font-size: 1.125rem;
    font-weight: 500;
    color: #A1A1A6;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

/* Premium Buttons */
.btn-nmca-blue {
    background: var(--brand-gradient);
    color: #FFFFFF;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nmca-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 204, 0.3);
}

.btn-nmca-outline {
    background: transparent;
    border: 1px solid rgba(161, 161, 166, 0.4);
    color: #FFFFFF;
}

.btn-nmca-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-large-premium {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border-radius: 0.75rem;
}

/* Premium Trustpilot Badge */
.hero-trust-badge {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.trust-excellent {
    font-weight: 700;
    font-size: 1.125rem;
}

.trust-stars-premium {
    display: flex;
    gap: 2px;
}

.star-box-premium {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #00B67A;
    /* Trustpilot Green */
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-box-premium .star-icon {
    width: 1rem;
    height: 1rem;
    color: #FFFFFF;
}

.trust-reviews {
    font-size: 0.8125rem;
    color: #FFFFFF;
    font-weight: 400;
}

.trust-reviews .trustpilot-logo {
    font-weight: 700;
}

.trust-reviews .trustpilot-logo span {
    font-size: 20px;
    color: #00B67A;
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding-mobile);
    background: var(--bg-surface);
}

@media (min-width: 1024px) {
    .pricing-section {
        padding: var(--section-padding);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

.toggle-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.375rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    width: fit-content;
    margin: 0 auto 4rem;
}

.toggle-btn {
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    background: transparent;
    color: var(--text-secondary);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-btn.active {
    background: #FFFFFF;
    color: #000000;
}

.badge-blue {
    font-size: 10px;
    background: var(--brand-gradient);
    padding: 2px 6px;
    border-radius: 9999px;
    color: white;
    margin-left: 4px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    padding: 2rem;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.card-header {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.card-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.card-price-main {
    font-size: 2.25rem;
    font-weight: 700;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.feature-label {
    color: var(--text-muted);
}

.feature-value {
    font-weight: 700;
}

.card-footer {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.price-tag {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

/* Pricing Special */
.card-featured {
    background: linear-gradient(to bottom, #0F172A, #121214);
    border-color: rgba(59, 203, 255, 0.3);
    box-shadow: 0 20px 50px rgba(59, 203, 255, 0.1);
}

.card-featured:hover {
    border-color: rgba(59, 203, 255, 0.5);
}

.ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: #3BCBFF;
    color: #000000;
    font-size: 10px;
    font-weight: 900;
    padding: 0.375rem 1rem;
    border-radius: 0 0 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text-gold {
    color: #3BCBFF;
}

.price-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.price-old {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.25rem;
    text-decoration: line-through;
}

.price-offer-label {
    color: rgba(59, 203, 255, 0.6);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* Utilities */
.w-full {
    width: 100%;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.italic {
    font-style: italic;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.flex-wrap {
    flex-wrap: wrap;
}

.relative-z {
    position: relative;
    z-index: 10;
}

/* Extra Sections CSS — Scoped to prevent conflicts */

.nmca-card-container,
.awards-features-section,
.why-nmca-section {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
}

/* Shared blur animation */
@keyframes blurFade {
    0% {
        opacity: 0;
        filter: blur(6px);
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.animate-slide-in {
    animation: blurFade 1s ease-in-out alternate;
    visibility: visible;
}

/* ========== SECTION 1: MAIN CARD (1-STEP) ========== */
.nmca-card-container {
    width: 100%;
    max-width: 1016px;
    margin: 2rem auto 3rem auto;
    position: relative;
    padding: 0 1rem;
}

.new-badge-wrapper {
    position: absolute;
    z-index: 2;
    left: 1.125rem;
    top: -1.625rem;
    transform: rotate(-6deg);
}

.badge-outer-glow {
    background: linear-gradient(90deg, #0F172A 0%, #1E293B 100%);
    border-radius: 9999px;
    padding: 1px;
}

.badge-gradient-border {
    background: linear-gradient(90deg, var(--nmca-green) 0%, transparent 75%);
    border-radius: 9999px;
    position: absolute;
    inset: 0;
}

.badge-inner {
    background: linear-gradient(90deg, #0F172A 0%, #1E293B 100%);
    border-radius: 9999px;
    padding: 0.375rem;
}

.badge-text {
    background: var(--secondary-gradient);
    color: #050A15;
    font-weight: 800;
    /* More bold */
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.25rem 1rem;
    /* More padding */
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(59, 203, 255, 0.4);
    /* Add glow */
}

.card-outer-border {
    border-radius: 1rem;
    padding: 1px;
    background: radial-gradient(30% 40% at 0% 0%, #1E6BFF 0%, rgba(255, 255, 255, 0.08) 100%);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 100%), #151515;
    overflow: hidden;
}

.bg-gradient-img {
    position: absolute;
    top: -2rem;
    left: -2rem;
    height: 100%;
    width: auto;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    opacity: 0.9;
}

.hero-character-img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -5.5rem;
    height: 100%;
    width: auto;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.card-content {
    padding: 1rem 1rem 1.5rem 1rem;
    position: relative;
    z-index: 3;
}

.headline {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: white;
    margin-bottom: 0.5rem;
}

.headline .highlight {
    font-weight: 600;
    font-size: 24px;
    color: var(--nmca-green);
    display: block;
}

.description {
    margin-top: 0.5rem;
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-group-2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-gradient);
    color: #050A15;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0 1.5rem;
    height: 3rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: inherit;
    flex: 1;
    text-align: center;
    border: none;
}

.btn-primary-2:hover {
    background: var(--secondary-gradient);
    transform: translateY(-1px);
}

.btn-secondary-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    height: 3rem;
    padding: 0 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1;
}

.btn-secondary-2:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
    .card-content {
        padding: 2.5rem;
    }

    .headline {
        font-size: 30px;
    }

    .headline .highlight {
        font-size: 30px;
        display: inline;
    }

    .btn-primary-2,
    .btn-secondary-2 {
        flex: initial;
    }

    .hero-character-img {
        right: 0;
    }
}

@media (max-width: 767px) {
    .bg-gradient-img {
        opacity: 0.2;
    }

    .hero-character-img {
        right: -3rem;
        opacity: 0.7;
    }

    .description br {
        display: none;
    }

    /* Fix badge positioning for mobile */
    .new-badge-wrapper {
        left: 2rem;
        /* Move it slightly more to the right */
        top: -0.75rem;
        /* Bring it down so it's not clipped by section edge */
        transform: rotate(-3deg);
        z-index: 100;
        /* Ensure it's above everything */
    }

    .badge-text {
        font-size: 0.8125rem;
        padding: 0.25rem 0.875rem;
    }
}

@media (max-width: 480px) {
    .btn-group-2 {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-primary-2,
    .btn-secondary-2 {
        width: 100%;
        height: 3.5rem;
        /* Much thicker for mobile */
        font-size: 1rem;
        /* Larger font */
        font-weight: 700;
        padding: 10px;
    }

    .headline {
        font-size: 24px;
        line-height: 1.1;
    }

    .headline .highlight {
        font-size: 24px;
    }

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

    .new-badge-wrapper {
        left: 1.5rem;
        top: 0.5rem;
    }

    .hero-character-img {
        right: -2.5rem;
        opacity: 0.5;
    }

    .btn-primary-2:active,
    .btn-secondary-2:active {
        transform: scale(0.98);
    }
}

/* ========== SECTION 2: AWARDS & FEATURES ========== */
.awards-features-section {
    width: 100%;
    max-width: 1016px;
    margin: 0 auto;
    padding: var(--section-padding-mobile);
}

@media (min-width: 1024px) {
    .awards-features-section {
        padding: 0;
    }
}

.awards-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .awards-row {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }
}

.awards-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    flex-shrink: 0;
}

.award-img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .award-img {
        height: 60px;
    }
}

.divider-vertical {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 0.5rem;
}

@media (max-width: 767px) {
    .divider-vertical {
        display: none;
    }
}

.features-list-2 {
    flex: 1;
}

.features-ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

@media (min-width: 640px) {
    .features-ul {
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .features-ul {
        justify-content: flex-start;
        gap: 2rem;
    }
}

.feature-item-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .feature-item-2 {
        justify-content: flex-start;
        text-align: left;
    }
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: var(--nmca-green);
    flex-shrink: 0;
}

.feature-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .feature-text {
        white-space: normal;
        font-size: 0.8rem;
    }
}

/* Tooltip styles */
.tooltip-wrapper {
    position: relative;
    display: inline-flex;
    cursor: help;
}

.tooltip-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 30, 0.98);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    width: 260px;
    padding: 1rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    z-index: 100;
    pointer-events: none;
    text-align: left;
}

.tooltip-content img {
    margin-bottom: 0.75rem;
    max-width: 100%;
    border-radius: 8px;
}

.tooltip-content p {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.tooltip-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
}

.tooltip-wrapper:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

.mobile-divider {
    display: none !important;
}

/* ========== SECTION 3: WHY PEOPLE CHOOSE NMCA ========== */
.why-nmca-section,
.section-one-group {
    background: rgb(5, 5, 6);
    width: 100%;
    padding: var(--section-padding-mobile);
}

@media (min-width: 1024px) {

    .why-nmca-section,
    .section-one-group {
        padding: var(--section-padding);
    }
}

.why-nmca-header {
    color: #a1a1aa;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-hero-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 344px;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
}

@media (min-width: 768px) {
    .why-hero-card {
        min-height: 384px;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svg-blob-blue,
.svg-blob-light {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
}

@media (min-width: 1024px) {

    .svg-blob-blue,
    .svg-blob-light {
        display: block;
    }
}

.mobile-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(61, 170, 254, 0.5), rgba(61, 170, 254, 0.25), rgba(61, 170, 254, 0));
}

@media (min-width: 1024px) {
    .mobile-gradient-overlay {
        display: none;
    }
}

.info-image-card {
    position: absolute;
    width: 172px;
    height: 72px;
    bottom: 1rem;
    right: 1.25rem;
    border-radius: 0.375rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .info-image-card {
        width: 380px;
        height: 159px;
        bottom: 10%;
        right: 2.5rem;
        border-radius: 1rem;
    }
}

.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1rem;
    z-index: 2;
}

@media (min-width: 1024px) {
    .hero-text-overlay {
        padding: 2rem;
    }
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.features-grid-2 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .features-grid-2 {
        gap: 1.5rem;
        margin-bottom: 3.5rem;
    }
}

.feature-card-2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.2s ease;
}

.feature-card-2:hover {
    border-color: rgba(59, 203, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .feature-card-2 {
        flex-direction: row;
    }
}

.feature-icon-2 {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--nmca-green);
    flex-shrink: 0;
}

.feature-card-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card-desc {
    color: #a1a1aa;
    font-size: 0.75rem;
}

@media (min-width: 1280px) {
    .features-grid-2 {
        grid-template-columns: repeat(8, 1fr);
    }

    .col-span-2 {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .features-grid-2 {
        grid-template-columns: 1fr;
    }

    .col-span-2 {
        grid-column: span 1;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .features-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .col-span-2 {
        grid-column: span 1;
    }
}

/* ---------- TESTIMONIALS SECTION ---------- */
.testimonials-section {
    background-color: #0a0a0c;
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 1024px) {
    .testimonials-section {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

/* stats row */
.stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .stats-wrapper {
        gap: 1.5rem;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 1.5rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.stat-divider {
    position: relative;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-divider::before,
.stat-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-divider::before {
    left: 0;
}

.stat-divider::after {
    right: 0;
}

@media (max-width: 640px) {
    .stat-divider {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* heading */
.section-title-testimonials {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    text-align: center;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .section-title-testimonials {
        font-size: 3rem;
    }
}

/* carousel card */
.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.video-container {
    position: relative;
    width: 100%;
    height: 12rem;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .video-container {
        height: 180px;
    }
}

@media (min-width: 1280px) {
    .video-container {
        height: 210px;
    }
}

.preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-container:hover .preview-video {
    transform: scale(1.05);
}

.video-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 104px;
    background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.youtube-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.375rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    backdrop-filter: blur(4.5px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.youtube-icon {
    width: 20px;
    height: 20px;
    fill: #ef4444;
}

.views-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.play-circle {
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.play-icon {
    width: 20px;
    fill: white;
}

.trader-info {
    padding: 0.5rem 0.75rem 0.75rem 0.75rem;
}

.trader-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.125rem;
}

.flag-icon {
    width: 1.25rem;
    height: 0.85rem;
    object-fit: cover;
    border-radius: 0.125rem;
}

.trader-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

@media (min-width: 768px) {
    .trader-name {
        font-size: 1.25rem;
    }
}

.trader-country {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.divider-line {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0.75rem 0;
}

.stats-row {
    display: flex;
    justify-content: space-between;
}

.stat-block {
    flex: 1;
}

.stat-label-small {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-weight: 600;
    color: white;
}

/* modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 70;
}

.modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 80;
    width: 90%;
    max-width: 880px;
    max-height: 90vh;
    overflow-y: auto;
    background-color: #161618;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #374151;
    padding: 1.25rem;
}

@media (min-width: 768px) {
    .modal-container {
        padding: 1.5rem;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    padding: 0.25rem;
    border-radius: 9999px;
    transition: background 0.2s;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.close-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
    overflow: hidden;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-scroll::-webkit-scrollbar {
    width: 5px;
}

.modal-scroll::-webkit-scrollbar-track {
    background: #1e1e22;
    border-radius: 10px;
}

.modal-scroll::-webkit-scrollbar-thumb {
    background: #4a4a5e;
    border-radius: 10px;
}

/* splide overrides */
.splide__track {
    overflow: visible !important;
}

.splide__slide {
    transition: transform 0.2s ease;
}

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

.flex-center-testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   Trustpilot Reviews Widget
   ========================================================================== */
.tp-widget-wrapper {
    max-width: 1280px;
    margin: 4rem auto;
    background-color: rgb(5, 5, 6);
    position: relative;
    z-index: 10;
}

.tp-widget-wrapper .hero-trust-badge {
    text-align: center;
    padding: 1.5rem 1rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.5rem;
    display: block;
    /* Override flex if inherited */
    margin-top: 0;
    /* Override margin-top if inherited */
}

.tp-widget-wrapper .trust-excellent {
    font-size: 1.75rem;
    font-weight: 700;
    color: #00b67a;
    letter-spacing: -0.3px;
    display: block;
    margin-bottom: 0.5rem;
}

.tp-widget-wrapper .trust-stars-premium {
    display: flex;
    justify-content: center;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.tp-widget-wrapper .star-box-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    /* Reset if inherited */
    width: auto;
    height: auto;
}

.tp-widget-wrapper .star-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: #00b67a;
    color: #00b67a;
}

.tp-widget-wrapper .trust-reviews {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.tp-widget-wrapper .trustpilot-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-weight: 500;
    color: white;
}

.tp-widget-wrapper .trustpilot-logo span:first-child {
    font-size: 1rem;
    color: #00b67a;
}

.tp-widget-reviews-grid {
    padding: 0;
}


.wrapper-reviews {
    padding-bottom: 2rem;
}

.tp-widget-reviews-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 640px) {
    .tp-widget-reviews-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tp-widget-reviews-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tp-widget-review {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.tp-widget-review:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.06);
}


.date-and-user-info-wrapper {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
}

.tp-widget-review__user-name {
    font-weight: 500;
}

.tp-widget-review__date {
    color: rgba(255, 255, 255, 0.4);
}

.tp-widget-review .header {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: white;
    line-height: 1.4;
}

.tp-widget-review .text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}



/* ==========================================================================
   How It Works Section
   ========================================================================== */
.hiw-section {
    background-color: rgb(5, 5, 6);
    padding: var(--section-padding-mobile);
}

@media (min-width: 1024px) {
    .hiw-section {
        padding: var(--section-padding);
    }
}

.hiw-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .hiw-header {
        align-items: center;
    }
}

.hiw-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 768px) {
    .hiw-title {
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .hiw-title {
        font-size: 2.25rem;
    }
}

.hiw-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .hiw-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hiw-card {
    position: relative;
    display: flex;
}

.hiw-card-inner {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hiw-card-inner {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .hiw-card-inner {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
}

.hiw-card .card-gradient-bg {
    position: absolute;
    max-height: 100%;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    object-fit: cover;
    object-position: top left;
    border-radius: 1rem;
    pointer-events: none;
}

.hiw-card .card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    padding-right: 0;
    z-index: 2;
}

@media (min-width: 768px) {
    .hiw-card .card-content {
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .hiw-card .card-content {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem 0 1rem;
    }
}

.hiw-card .card-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: #FFFFFF;
    /* Added fill color */
}

@media (min-width: 768px) {
    .hiw-card .card-icon {
        width: 2rem;
        height: 2rem;
    }
}

.hiw-card .card-label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .hiw-card .card-label {
        font-size: 0.875rem;
    }
}

.hiw-card .card-heading {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .hiw-card .card-heading {
        font-size: 1.5rem;
    }
}

.hiw-card .card-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .hiw-card .card-description {
        font-size: 0.875rem;
    }
}

.hiw-card .card-image {
    position: relative;
    width: 50%;
    height: auto;
    align-self: flex-end;
    z-index: 2;
}

@media (min-width: 768px) {
    .hiw-card .card-image {
        width: 100%;
        margin-right: 0;
        border-bottom-left-radius: 1rem;
        border-bottom-right-radius: 1rem;
    }
}

@media (max-width: 767px) {
    .hiw-card .card-image {
        width: 100%;
        max-width: 260px;
        margin: 1rem auto 0 auto;
        object-fit: contain;
        object-position: bottom;
        border-bottom-right-radius: 1rem;
        border-bottom-left-radius: 1rem;
    }
}

.hiw-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: calc(50% - 30px);
    height: 5rem;
    background: rgba(9, 9, 11, 0.01);
    backdrop-filter: blur(4px);
    mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 768px) {
    .hiw-card .card-overlay {
        width: 100%;
    }
}

.hiw-card .card-arrow {
    display: none;
    position: absolute;
    right: -2.75rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0a0a0c;
    border-radius: 9999px;
    padding: 1.25rem;
    z-index: 3;
}

@media (min-width: 768px) {
    .hiw-card .card-arrow {
        display: block;
    }
}

.hiw-card .arrow-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
    color: rgba(255, 255, 255, 0.5);
}

.hiw-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.hiw-section .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--brand-gradient);
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: white !important;
    transition: background-color 0.2s ease;
    height: 3rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hiw-section .btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.hiw-section .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: white !important;
    transition: background-color 0.2s ease;
    height: 3rem;
}

.hiw-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Trading Platforms Section
   ========================================================================== */
.platforms-section {
    background-color: rgb(5, 5, 6);
    padding: var(--section-padding-mobile);
}

@media (min-width: 1024px) {
    .platforms-section {
        padding: var(--section-padding);
    }
}

.platforms-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .platforms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.platforms-content {
    order: 2;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .platforms-content {
        order: 1;
        grid-column: span 1;
        justify-content: center;
    }
}

.platforms-image-col {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .platforms-image-col {
        order: 2;
        grid-column: span 1;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
    }
}

.platforms-heading {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .platforms-heading {
        font-size: 2.25rem;
    }
}

.platforms-description {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin: 1rem 0;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .platforms-description {
        margin-bottom: 0;
    }
}

.platforms-button-wrapper {
    margin-top: 1rem;
}

@media (min-width: 1024px) {
    .platforms-button-wrapper {
        margin-top: 2rem;
    }
}

.platforms-section .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: #09090b !important;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    height: 3rem;
}

.platforms-section .btn-outline:hover {
    background-color: #f5f5f5;
    border-color: rgba(0, 0, 0, 0.3);
}

.platforms-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ==========================================================================
   People of NMCA Section
   ========================================================================== */
.people-section {
    background-color: rgb(5, 5, 6);
    padding: var(--section-padding-mobile);
}

@media (min-width: 1024px) {
    .people-section {
        padding: var(--section-padding);
    }
}

.people-banner {
    position: relative;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .people-banner {
        margin-bottom: 1.25rem;
    }
}

.people-section .banner-mobile-bar {
    position: relative;
    height: 5rem;
    width: 100%;
    background-color: #1387f7;
}

@media (min-width: 768px) {
    .people-section .banner-mobile-bar {
        display: none;
    }
}

.people-section .banner-image {
    width: 100%;
    height: 555px;
    min-height: 435px;
    margin-top: -1px;
    object-fit: cover;
    display: block;
}

.people-section .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(0deg, rgba(5, 5, 6, 0.622) 0%, rgba(5, 5, 6, 0.637) 100%);
}

@media (min-width: 640px) {
    .people-section .banner-overlay {
        padding: 2.5rem 1rem;
        gap: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .people-section .banner-overlay {
        padding: 4rem 1rem;
    }
}

@media (min-width: 1024px) {
    .people-section .banner-overlay {
        padding-left: 0;
        padding-right: 0;
    }
}

.people-section .banner-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .people-section .banner-title {
        font-size: 2.25rem;
    }
}

.people-section .banner-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 90%;
}

@media (min-width: 1024px) {
    .people-section .banner-description {
        max-width: 55%;
    }
}

.people-section .button-group {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-primary-people {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--brand-gradient);
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: white !important;
    transition: background-color 0.2s ease;
    height: 3rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn-primary-people:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.btn-outline-people {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: #09090b !important;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    height: 3rem;
}

.btn-outline-people:hover {
    background-color: #f5f5f5;
    border-color: rgba(0, 0, 0, 0.3);
}

.people-section .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .people-section .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .people-section .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.people-section .stat-card {
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.people-section .stat-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .people-section .stat-card {
        padding: 1.5rem;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        min-height: 158px;
    }
}

.people-section .stat-svg-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    pointer-events: none;
}

.people-section .stat-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.people-section .stat-label {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .people-section .stat-label {
        font-size: 1rem;
    }
}

.people-section .stat-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: rgba(255, 255, 255, 0.5);
    margin-right: 0.5rem;
    display: inline-block;
}

.people-section .stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

@media (min-width: 768px) {
    .people-section .stat-number {
        font-size: 2.25rem;
    }
}

.people-section .stat-image {
    position: absolute;
    width: auto;
    max-height: 100%;
    bottom: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
}

.people-section .stat-image.scale-70 {
    transform: scale(0.7);
}

.people-section .stat-image.scale-140 {
    transform: scale(1.4);
}

@media (min-width: 640px) {
    .people-section .stat-image.scale-70 {
        transform: scale(1);
        bottom: 0;
        right: 0;
    }

    .people-section .stat-image.scale-140 {
        transform: scale(1);
    }
}

/* ==========================================================================
   Customer Support Section
   ========================================================================== */
.support-section {
    background-color: rgb(5, 5, 6);
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 1024px) {
    .support-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.support-image-col {
    position: relative;
    order: 2;
    overflow: hidden;
    border-radius: 1rem;
}

@media (min-width: 768px) {
    .support-image-col {
        order: 3;
    }
}

.support-main-image {
    width: 100%;
    display: block;
}

.support-section .carousel-overlay {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
}

.language-item {
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6.25px);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .language-item {
        padding: 0.75rem 1rem;
    }
}

.flag-circle {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .flag-circle {
        width: 1.5rem;
        height: 1.5rem;
        margin-right: 0.5rem;
    }
}

.flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.language-name {
    color: white;
    font-size: 0.875rem;
    white-space: nowrap;
}

.support-section .top-carousel {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
}

.support-section .bottom-carousel {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
}

@media (min-width: 1024px) {
    .support-section .bottom-carousel {
        top: 85px;
    }
}

.support-section .splide__track {
    overflow: visible !important;
}

.support-section .splide__slide {
    width: auto !important;
}

.support-section .gradient-bottom-blue {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 24px;
    background: linear-gradient(to top, #0a0a0c, transparent);
    filter: blur(4px);
    z-index: 5;
}

.support-section .gradient-large {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, #0a0a0c, transparent);
    filter: blur(2px);
    z-index: 2;
}

.support-section .stats-badge {
    position: absolute;
    bottom: 5%;
    left: 5%;
    display: flex;
    gap: 2rem;
    z-index: 10;
}

@media (min-width: 1024px) {
    .support-section .stats-badge {
        gap: 2rem;
    }
}

.support-section .stat-number {
    font-size: clamp(2rem, 10cqw, 3rem);
    font-weight: 600;
    color: white;
}

.support-section .stat-label {
    font-size: clamp(0.75rem, 3cqw, 1rem);
    color: white;
}

.support-content {
    order: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 768px) {
    .support-content {
        order: 2;
        width: 83.333%;
    }
}

.online-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
}

.pulse-dot {
    position: relative;
    width: 1rem;
    height: 1rem;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00C951;
    border-radius: 50%;
    opacity: 0.1;
    animation: supportPulse 7s infinite;
}

.solid-dot {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    top: 0.25rem;
    left: 0.25rem;
    background-color: #00C951;
    border-radius: 50%;
}

@keyframes supportPulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(2);
        opacity: 0.05;
    }

    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

.online-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.support-heading {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .support-heading {
        font-size: 2.25rem;
    }
}

.support-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-bottom: 1.5rem;
}

@media (min-width: 480px) {
    .contact-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 3rem;
    padding: 0 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}

.contact-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-btn-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to right, #FF00CC, #A020F0);
    transform-origin: top left;
    transform: rotate(12.06deg);
    filter: blur(100px);
    transition: transform 0.2s;
    pointer-events: none;
}

.contact-btn:hover .contact-btn-bg {
    transform: rotate(45deg);
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    z-index: 1;
    flex-shrink: 0;
}

.contact-text {
    color: rgba(255, 255, 255, 0.909);
    font-size: 0.875rem;
    z-index: 1;
    transition: color 0.2s;
}

.contact-btn:hover .contact-text {
    color: white;
}

.support-section .arrow-icon {
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    display: none;
    z-index: 1;
}

@media (min-width: 768px) {
    .support-section .arrow-icon {
        display: block;
    }
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.show-all-link {
    text-decoration: none;
    color: #000;
}

@media (min-width: 480px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.contact-info-value {
    color: white;
    font-size: 0.875rem;
}

.contact-info-item:hover .contact-info-label {
    color: white;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    background-color: rgb(5, 5, 6);
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 1024px) {
    .faq-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faq-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

@media (min-width: 1024px) {
    .faq-title {
        font-size: 2.25rem;
    }
}

.faq-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.faq-grid {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .faq-grid {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-column+.faq-column {
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .faq-column+.faq-column {
        margin-top: 0;
    }
}

.faq-item {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    transition: all 0.2s;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    text-align: left;
}

@media (min-width: 1024px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    fill: rgba(255, 255, 255, 0.5);
    transition: fill 0.2s;
}

.faq-item:hover .faq-icon {
    fill: white;
}

.faq-question-text {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.faq-chevron {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s;
    fill: rgba(255, 255, 255, 0.5);
}

.faq-chevron.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.25rem 1rem 1.25rem;
}

@media (min-width: 1024px) {
    .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

.faq-answer-content {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.faq-answer-content p {
    margin-top: 0.75rem;
}

.faq-answer-content p:first-child {
    margin-top: 0;
}

.faq-answer-content a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.faq-answer-content a:hover {
    opacity: 0.75;
}

.faq-answer-content strong,
.faq-answer-content b {
    font-weight: 600;
}

.faq-section .read-more-link {
    display: block;
    width: 100%;
    margin-top: 1rem;
    color: white;
    font-size: 1rem;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.faq-section .read-more-link:hover {
    opacity: 0.75;
}

.faq-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.faq-footer a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.faq-footer a:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* ==========================================================================
   NMCA CHALLENGE PRICING SECTION
   ========================================================================== */
.section-pricing {
    background-color: rgb(5, 5, 6);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-pricing .top-gradient-desktop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 0;
}

.section-pricing .container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1280px) {
    .section-pricing .container {
        max-width: 1224px;
        padding: 0;
    }
}

.section-pricing .h2 {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-pricing .body-base {
    font-size: 1rem;
    color: #A1A1AA;
}

/* Tabs */
.section-pricing .step-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 6px;
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
    gap: 8px;
}

.section-pricing .step-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 16px;
    border-radius: 0.75rem;
    font-weight: 600;
    background: transparent;
    border: none;
    color: #A1A1AA;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: left;
    line-height: 1.3;
}

.section-pricing .step-tab.active {
    background: #A020F0;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(160, 32, 240, 0.3);
}

.section-pricing .step-tab .badge-new {
    background: var(--brand-gradient);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 8px;
    display: inline-block;
}

.section-pricing .step-tab svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.section-pricing .tab-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 1rem;
    font-weight: 700;
}

.section-pricing .tab-subtitle {
    font-size: 0.7rem;
    opacity: 0.75;
    font-weight: normal;
}

/* Currency Tabs */
.section-pricing .currency-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: transparent;
    margin-top: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 16px;
}

.section-pricing .currency-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 500;
    font-size: 0.9rem;
    color: #A1A1AA;
    cursor: pointer;
    transition: 0.2s;
}

.section-pricing .currency-btn.active {
    background: #A020F0;
    border-color: #A020F0;
    color: white;
}

.section-pricing .currency-btn img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* Pricing Grid & Cards */
.section-pricing .nmca-pricing-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 24px 0 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.section-pricing .nmca-pricing-grid::-webkit-scrollbar {
    display: none;
}

.section-pricing .nmca-pricing-card {
    background: #18181B;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    min-width: 280px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s;
}

.section-pricing .nmca-pricing-card.popular {
    border-color: #A020F0;
    background: linear-gradient(145deg, #1f1f24, #18181B);
}

.section-pricing .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #A020F0;
    color: #09090B;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 40px;
    white-space: nowrap;
}

.section-pricing .sale-badge {
    position: absolute;
    top: -16px;
    right: -12px;
    width: 70px;
}

.section-pricing .account-size {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin: 12px 0 8px;
}

.section-pricing .price-area {
    text-align: center;
    margin: 16px 0;
}

.section-pricing .price-original {
    text-decoration: line-through;
    font-size: 0.9rem;
    color: #71717A;
}

.section-pricing .price-sale {
    font-size: 1.8rem;
    font-weight: 700;
    color: #A020F0;
}

.section-pricing .price-normal {
    font-size: 1.8rem;
    font-weight: 700;
}

.section-pricing .objectives-list {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-pricing .objective-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.section-pricing .objective-label {
    color: #A1A1AA;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-pricing .tooltip-icon {
    width: 16px;
    height: 16px;
    background: #3F3F46;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: help;
}

.section-pricing .btn-start {
    background: var(--brand-gradient);
    color: white;
    font-weight: 600;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    display: block;
    text-decoration: none;
    margin-top: 16px;
    transition: 0.2s;
}

.section-pricing .btn-start:hover {
    filter: brightness(1.1);
}

.section-pricing .avg-reward {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    margin-top: 12px;
    font-size: 0.8rem;
}

.section-pricing .tooltip-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #A1A1AA;
    cursor: default;
}

/* Utilities */
.section-pricing .desktop-only {
    display: flex;
}

.section-pricing .mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .section-pricing .desktop-only {
        display: none;
    }

    .section-pricing .mobile-only {
        display: block;
    }

    .section-pricing .step-tabs {
        margin-bottom: 20px;
        flex-direction: column;
        background: transparent;
        gap: 12px;
    }

    .section-pricing .step-tab {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .section-pricing .step-tab.active {
        background: #FFFFFF;
    }

    .section-pricing .mobile-currency-selector {
        margin: 16px 0;
    }

    .section-pricing .h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Utility Replacements (Non-Tailwind)
   ========================================================================== */
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-perks-container {
    margin-top: 2rem;
}

.perks-label {
    font-size: 1rem;
    color: #A1A1AA;
    margin-bottom: 0.5rem;
}

.perks-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pricing-card-header {
    text-align: center;
}

.section-pricing .pricing-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.footer-address-container {
    margin-top: 1.5rem;
}

/* Footer Glow Decoration */
.footer-glow-container {
    position: relative;
    width: 100%;
    height: 7.5rem;
    background-color: var(--bg-surface);
    overflow: hidden;
}

.footer-glow-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.424);
    z-index: 0;
}


@media (min-width: 1024px) {
    .footer-glow-container {
        height: 15rem;
    }
}

.footer-glow-svg {
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: absolute;
    bottom: -30px;
    left: 0;
}

@media (min-width: 1024px) {
    .footer-glow-svg {
        bottom: 0;
        top: 0;
    }
}

/* Trader Reviews Section */
.trader-reviews-section {
    padding: var(--section-padding-mobile);
}

@media (min-width: 1024px) {
    .trader-reviews-section {
        padding: var(--section-padding);
    }
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.reviews-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.reviews-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .trader-reviews-section {
        padding: 60px 0;
    }

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

/* ============================================================
   MOBILE & TABLET RESPONSIVE OVERRIDES — Index Page
   All rules use max-width so they ONLY affect mobile/tablet
   and do NOT touch the large-screen (≥1024px) design.
   ============================================================ */

/* ---------- HERO SECTION ---------- */
@media (max-width: 767px) {
    .hero-section {
        padding: 5.5rem 0 4.5rem;
    }

    .hero-badge-premium {
        margin-bottom: 1.5rem;
    }

    .hero-title-premium {
        font-size: 2.25rem;
        letter-spacing: -0.015em;
    }

    .hero-desc-premium {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .hero-actions {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }

    .btn-large-premium {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0 2rem;
    }

    .hero-title-premium {
        font-size: 1.875rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-large-premium {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ---------- 1-STEP CHALLENGE CARD ---------- */
@media (max-width: 767px) {
    .nmca-card-container {
        margin: 0.5rem auto 2rem;
        padding: 0 0.75rem;
    }

    .card-inner {
        min-height: 200px;
    }
}

/* ---------- AWARDS ROW & FEATURES LIST ---------- */
@media (max-width: 639px) {
    .awards-logos {
        gap: 1rem;
    }

    .award-img {
        height: 38px;
    }

    .why-nmca-header {
        font-size: 1rem;
    }
}

/* ---------- WHY NMCA HERO CARD & INFO IMAGE ---------- */
@media (max-width: 767px) {
    .why-hero-card {
        min-height: 280px;
    }

    .info-image-card {
        width: 180px;
        height: 75px;
        top: 1.5rem;
        bottom: auto;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .hero-text-overlay {
        align-items: flex-end;
        justify-content: center;
        text-align: center;
        padding-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 1.25rem;
        display: block;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        display: block;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .why-hero-card {
        min-height: 220px;
    }

    .info-image-card {
        width: 110px;
        height: 46px;
        right: 0.75rem;
    }
}

/* ---------- FEATURE CARDS GRID (Why section) ---------- */
@media (max-width: 767px) {
    .features-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .col-span-2 {
        grid-column: span 1;
    }

    .feature-card-2 {
        gap: 0.5rem;
        padding: 0.75rem;
        flex-direction: row;
        align-items: flex-start;
    }

    .feature-card-title {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }

    .feature-card-desc {
        font-size: 0.7rem;
    }

    .feature-icon-2 {
        width: 1.25rem;
        height: 1.25rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .features-grid-2 {
        grid-template-columns: 1fr;
    }

    .feature-card-2 {
        flex-direction: row;
    }
}

/* ---------- REVIEWS HEADER ---------- */
@media (max-width: 480px) {
    .reviews-header {
        margin-bottom: 2rem;
    }

    .reviews-subtitle {
        font-size: 0.925rem;
    }
}

/* ---------- HOW IT WORKS BUTTONS ---------- */
@media (max-width: 767px) {
    .hiw-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hiw-section .btn-primary,
    .hiw-section .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- PRICING SECTION ---------- */
@media (max-width: 767px) {
    .section-pricing {
        padding: var(--section-padding-mobile);
    }

    .section-pricing .nmca-pricing-card {
        min-width: 260px;
    }

    .pricing-header {
        margin-bottom: 1.5rem;
    }

    .section-pricing .h2 {
        font-size: 1.625rem;
    }
}

/* ---------- PLATFORMS SECTION ---------- */
@media (max-width: 767px) {
    .platforms-heading {
        font-size: 1.5rem;
    }

    .platforms-description {
        font-size: 0.925rem;
    }
}

/* ---------- PEOPLE OF NMCA SECTION ---------- */
@media (max-width: 767px) {
    .people-section .banner-image {
        height: 320px;
        min-height: 260px;
    }

    .people-section .banner-title {
        font-size: 1.5rem;
    }

    .people-section .banner-description {
        font-size: 0.875rem;
        max-width: 100%;
    }

    .people-section .button-group {
        flex-direction: column;
        gap: 0.625rem;
        width: 100%;
    }

    .btn-primary-people,
    .btn-outline-people {
        width: 100%;
        justify-content: center;
    }

    .people-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .people-section .stat-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        min-height: auto;
        padding: 1rem;
    }

    .people-section .stat-content {
        flex-direction: row;
        align-items: center;
        gap: 1.25rem;
    }

    .people-section .stat-number {
        font-size: 1.75rem;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .people-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card.order-1 {
        grid-column: 1 / -1;
    }
}

/* ---------- SUPPORT SECTION ---------- */
@media (max-width: 767px) {
    .support-heading {
        font-size: 1.5rem;
    }

    .support-description {
        font-size: 0.925rem;
        margin-bottom: 1.25rem;
    }

    /* Fix invisible "Show All Contacts" link on dark background */
    .show-all-link {
        color: rgba(255, 255, 255, 0.75) !important;
        font-size: 0.875rem;
    }
}

/* ---------- FAQ SECTION ---------- */
@media (max-width: 767px) {
    .faq-title {
        font-size: 1.5rem;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }
}

/* ============================================================
   MEDIUM TABLET BREAKPOINT (768px – 1023px)
   Refines layout for iPad-size screens specifically.
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {

    /* Hero */
    .hero-title-premium {
        font-size: 3.75rem;
    }

    /* Why NMCA card */
    .why-hero-card {
        min-height: 310px;
    }

    .info-image-card {
        width: 260px;
        height: 109px;
    }

    /* People */
    .people-section .banner-image {
        height: 420px;
        min-height: 380px;
    }

    .people-section .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Platforms */
    .platforms-heading {
        font-size: 1.75rem;
    }

    /* Pricing */
    .section-pricing .nmca-pricing-card {
        min-width: 240px;
    }
}

/* ============================================================
   TARGETED MOBILE FIXES — Visual issues reported by user
   ============================================================ */

/* Global: prevent horizontal overflow (right-side black strip) */
html {
    overflow-x: hidden;
}

/* All major sections: lock horizontal overflow */
@media (max-width: 767px) {

    .nmca-card-container,
    .awards-features-section,
    .why-nmca-section,
    .section-one-group,
    .trader-reviews-section,
    .hiw-section,
    .section-pricing,
    .platforms-section,
    .people-section,
    .support-section,
    .faq-section {
        overflow-x: hidden;
    }
}

/* ---- FIX 1: Hero section — more breathing room at top on mobile ---- */
@media (max-width: 767px) {
    .hero-section {
        /* Increase top padding so content sits well below fixed header+banner */
        padding-top: 8rem !important;
        padding-bottom: 4.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 7.5rem !important;
        padding-bottom: 3.5rem !important;
    }
}

/* ---- FIX 2: 1-Step Challenge card — image on top, text below on mobile ---- */
@media (max-width: 767px) {

    /* Switch the card to a vertical flex column */
    .card-inner {
        display: flex !important;
        flex-direction: column !important;
        min-height: auto !important;
        overflow: hidden !important;
    }

    /* Pull the character image out of absolute and put it on top */
    .hero-character-img {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        width: 100% !important;
        height: 180px !important;
        object-fit: contain !important;
        object-position: center bottom !important;
        opacity: 1 !important;
        order: 1;
        /* image renders first (top) */
        align-self: center;
    }

    /* Keep background gradient image correctly placed behind everything */
    .bg-gradient-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0.12 !important;
        order: 0;
    }

    /* Content goes below the image */
    .card-inner .card-content {
        order: 2;
        width: 100% !important;
        padding: 1rem 1.25rem 1.5rem 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

/* ---- FIX 3: People section — banner + Careers button + overflow ---- */
@media (max-width: 767px) {
    .people-section {
        overflow: hidden;
    }

    .people-banner {
        overflow: hidden;
    }

    /* Fix ">" arrow SVG inside Careers button that breaks layout */
    .btn-icon {
        display: inline-block !important;
        width: 0.875rem !important;
        height: 0.875rem !important;
        flex-shrink: 0 !important;
        vertical-align: middle;
    }

    /* Reduce banner height and tighten the overlay layout */
    .people-section .banner-image {
        height: 380px !important;
        min-height: 340px !important;
        object-position: center center;
    }

    .people-section .banner-overlay {
        padding: 1.25rem 1rem !important;
        gap: 0.625rem !important;
        justify-content: flex-end;
        align-items: center;
    }

    .people-section .banner-title {
        font-size: 1.375rem !important;
        line-height: 1.25;
    }

    /* Limit description to 3 lines on mobile */
    .people-section .banner-description {
        font-size: 0.8125rem !important;
        max-width: 100% !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Stat card images — prevent overflow and over-scaling */
    .people-section .stat-image {
        max-height: 100px;
    }

    .people-section .stat-image.scale-70 {
        transform: scale(0.65) !important;
        transform-origin: bottom right;
    }

    .people-section .stat-image.scale-140 {
        transform: scale(1) !important;
    }
}

/* ---- FIX 4: Center text and content for Platforms and Support sections on mobile ---- */
@media (max-width: 767px) {

    .platforms-content,
    .support-content {
        text-align: center;
        align-items: center;
    }

    .support-content .online-status {
        justify-content: center;
        width: 100%;
    }

    .support-content .contact-buttons {
        justify-content: center;
        width: 100%;
    }

    .platforms-button-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}