/* Self-hosted Gabarito variable font */
@font-face {
    font-family: 'Gabarito';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('assets/fonts/gabarito-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Gabarito';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('assets/fonts/gabarito-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* CSS Variables */
:root {
    --gold-primary: #f9db6d;
    --gold-light: #d0f0f5;
    --gold-dark: #efc642;
    --bg-dark: #0A0A0A;
    --bg-secondary: #141414;
    --bg-card: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --bg-primary: #141414;
    --border-color: #2A2A2A;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gabarito', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
    background: 
        radial-gradient(circle at 20% 50%, var(--gold-primary) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #1E88E5 0%, transparent 50%);
    pointer-events: none;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-primary);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.6rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.trade-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000000;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-family: 'Gabarito', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 10px var(--gold-primary), 0 0 20px rgba(212, 175, 55, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.trade-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    animation: none;
    box-shadow: 0 0 25px var(--gold-primary), 0 0 50px rgba(212, 175, 55, 0.7);
}

/* Smooth scroll offset for fixed header — avoids getBoundingClientRect() */
section[id] {
    scroll-margin-top: 100px;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
    margin-top: 80px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Block 2: Chart Section */
.chart-section {
    padding: 0.8rem 0 0;
    position: relative;
    z-index: 1;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Gabarito', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.chart-container {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    height: 600px;
    overflow: hidden;
    position: relative;
    z-index: 0;
    contain: layout paint;
}

.chart-container iframe {
    max-height: 100% !important;
    max-width: 100% !important;
    position: relative;
    z-index: 0;
}

.chart-container::before {
    display: none;
}

.chart-wrapper {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tradingview-widget-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tradingview-widget-container iframe {
    max-height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Block 3: Ticker Section */
.ticker-section {
    background: var(--bg-dark);
    border-top: none;
    border-bottom: none;
    padding: 1rem 0 0;
    position: relative;
}

.ticker-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.ticker-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    background: transparent;
    margin-top: 2rem;
}

/* Market summary widget */
.ticker-container tv-market-summary {
    width: 100%;
}

/* Block 4: Analysis Section */
.analysis-section {
    padding: 1rem 0 0;
    background: var(--bg-dark);
}

.widgets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.widget-wrapper {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

.widget-title {
    font-family: 'Gabarito', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.widget-wrapper .tradingview-widget-container {
    height: auto;
    min-height: 450px;
}

.widget-wrapper:first-child .tradingview-widget-container {
    height: 550px;
}

/* Block 5: Brokers Section */
.brokers-section {
    padding: 1rem 0 0;
    background: var(--bg-dark);
}

.broker-list {
    margin-top: 2rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to right, #fef2d9, #12121246);
    border-radius: 12px;
    padding: 0.2rem 1.5rem;
}

.broker-card {
    border-bottom: 1px solid #E0E0E0;
}

.broker-card:last-child {
    border-bottom: none;
}

.broker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.broker-name {
    font-family: 'Gabarito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A1A1A;
    display: flex;
    flex: 1;
    align-items: center;
    gap: 0.75rem;
}

.broker-logo {
    height: 50px;
    width: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.broker-logo:hover {
    transform: scale(1.1);
}

.broker-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.broker-cta-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000000;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-family: 'Gabarito', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 10px var(--gold-primary), 0 0 20px rgba(212, 175, 55, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px var(--gold-primary), 0 0 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 20px var(--gold-primary), 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

.broker-cta-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    animation: none;
    box-shadow: 0 0 25px var(--gold-primary), 0 0 50px rgba(212, 175, 55, 0.7);
}

.broker-info-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #CCCCCC;
    background: transparent;
    color: #999999;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}

.broker-info-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.broker-info-btn.active {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.broker-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.broker-details.open {
    max-height: 400px;
    padding-bottom: 1rem;
}

.broker-details p {
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.8;
    padding-left: 0.25rem;
}

.broker-platform-logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.broker-platform-logo:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.broker-badge {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.broker-badge:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.broker-badges-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.broker-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.broker-disclaimer {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold-primary);
    border-radius: 4px;
}

.broker-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Block 7: FAQ Section */
.faq-section {
    padding: 1rem 0 3rem;
    background: var(--bg-dark);
    content-visibility: auto;
    contain-intrinsic-size: 0 900px;
}

.faq-container {
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--gold-primary);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Gabarito', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    user-select: none;
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-question h3.faq-question-heading {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    color: inherit;
    line-height: inherit;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-primary);
    transition: transform 0.3s;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.faq-answer h4 {
    color: var(--gold-primary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.5rem;
}

.faq-answer ul li {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.8;
    padding-left: 1.2rem;
    position: relative;
}

.faq-answer ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

.faq-answer strong {
    font-weight: 500;
    color: var(--text-primary);
}

/* Block 8: Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 2px solid var(--gold-primary);
    padding: 1rem 0 1rem;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
}

.region-dropdown {
    position: relative;
}

.region-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.region-dropdown-btn:hover {
    border-color: var(--gold-primary);
}

.region-dropdown-btn img {
    border-radius: 3px;
}

.region-dropdown-btn svg {
    margin-left: 0.2rem;
    transition: transform 0.2s;
}

.region-dropdown.open .region-dropdown-btn svg {
    transform: rotate(180deg);
}

.region-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    z-index: 10;
    grid-template-columns: 1fr 1fr;
}

.region-dropdown.open .region-dropdown-menu {
    display: grid;
}

.region-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.7rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.region-option:hover {
    background: #1a1a1a;
    color: var(--text-primary);
}

.region-option.active {
    color: var(--gold-primary);
}

.region-option img {
    border-radius: 3px;
}

.footer-section h3 {
    font-family: 'Gabarito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.footer-email a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-email a:hover {
    color: var(--gold-primary);
}

.footer-link a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-link a:hover {
    color: var(--gold-primary);
}

.footer-social a {
    display: inline-block;
    margin-top: 0.75rem;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 0.8;
}

.footer-social img {
    display: block;
    width: 32px;
    height: 32px;
}

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

.footer-disclaimer {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer strong {
    color: var(--gold-primary);
    font-weight: 700;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    background: var(--bg-card);
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    color: var(--gold-primary);
}

.popup-title {
    font-family: 'Gabarito', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 15px;
    text-align: center;
}

.popup-text {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
}

.popup-brokers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-broker-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-dark);
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.popup-broker-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

.popup-broker-shiny {
    position: relative;
    overflow: hidden;
}

.popup-broker-shiny::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 70%,
        transparent 100%
    );
    animation: shiny-sweep 3s ease-in-out infinite;
}

@keyframes shiny-sweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.popup-broker-logo {
    height: 30px;
    width: auto;
}

/* Consent Banner */
.consent-banner {
    position: fixed;
    z-index: 10000;
    font-family: 'Gabarito', sans-serif;
}

/* Consent Banner - Simple */
.consent-banner-simple {
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    border-top: 1px solid var(--gold-primary);
    backdrop-filter: blur(10px);
}

.consent-banner-simple .consent-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.consent-text-simple {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.consent-link {
    color: var(--gold-primary);
    text-decoration: underline;
}

.consent-link:hover {
    color: var(--gold-light);
}

.consent-buttons-simple {
    display: flex;
    gap: 0.75rem;
}

.consent-btn-accept-simple,
.consent-btn-deny-simple {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-family: 'Gabarito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.consent-btn-accept-simple {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000;
}

.consent-btn-accept-simple:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

.consent-btn-deny-simple {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--text-secondary);
}

.consent-btn-deny-simple:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav {
        gap: 1.5rem;
    }

    .widgets-grid {
        gap: 1.5rem;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

/* Disable expensive effects on mobile for performance */
@media (max-width: 768px) {
    /* Remove GPU-intensive backdrop blur */
    .header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(10, 10, 10, 0.98);
    }

    /* Stop continuous animations — biggest TBT contributor on mobile */
    .trade-btn,
    .broker-cta-btn {
        animation: none;
        box-shadow: 0 0 10px var(--gold-primary), 0 0 20px rgba(212, 175, 55, 0.4);
    }

    .popup-broker-shiny::after {
        animation: none;
        display: none;
    }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .trade-btn,
    .broker-cta-btn,
    .popup-broker-shiny::after {
        animation: none;
    }
}

@media (max-width: 768px) {
    .consent-banner-simple .consent-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 1rem;
    }

    .nav-link {
        font-size: 1rem;
        white-space: nowrap;
    }

    .main-content {
        margin-top: 55px;
    }

    .chart-section {
        padding: 0.3rem 0 0;
    }

    .chart-container {
        height: 450px;
        padding: 0;
    }

    .header-content {
        padding: 0.8rem 0;
    }

    .trade-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .widgets-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Broker responsive */
    .container {
        padding: 0 1rem;
    }

    .broker-list {
        padding: 0.2rem 1rem;
    }

    .broker-logo {
        height: 42px;
        width: auto;
    }

    .broker-name {
        font-size: 1rem;
    }

    .broker-cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .broker-info-btn {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .broker-badges-row {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: flex-start;
    }

    .broker-badge,
    .broker-platform-logo {
        height: 60px;
    }
    
    /* FAQ responsive */
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }
    
    /* Footer responsive */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .nav {
        gap: 0.6rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .trade-btn {
        font-size: 0.8rem;
        padding: 0.45rem 0.8rem;
    }

    .header-content {
        padding: 0.6rem 0;
    }

    /* Broker mobile */
    .container {
        padding: 0 0.75rem;
    }

    .broker-list {
        padding: 0.2rem 0.75rem;
    }

    .broker-logo {
        height: 36px;
        width: auto;
    }

    .broker-name {
        font-size: 0.95rem;
    }

    .broker-cta-btn {
        font-size: 0.8rem;
        padding: 0.45rem 0.8rem;
    }

    .broker-info-btn {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    .broker-badges-row {
        gap: 0.75rem;
    }

    .broker-badge,
    .broker-platform-logo {
        height: 50px;
    }
    
    /* FAQ mobile */
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-icon {
        font-size: 1.3rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}
