/* ========================================
   DOOH MARKETPLACE PAGE
   ======================================== */

html,
body {
    overflow-x: hidden;
}

/* Dashboard Mockup */
.dashboard-section {
    background: var(--bg-secondary);
}

.dashboard-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.dashboard-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.dash-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.dash-stat .value {
    font-size: 1.3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.dash-stat .value.green { color: #22c55e; }
.dash-stat .value.blue { color: #3b82f6; }
.dash-stat .value.purple { color: #8b5cf6; }
.dash-stat .value.cyan { color: #06b6d4; }
.dash-stat .value.amber { color: #f59e0b; }

.dash-stat .label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Dashboard Chart */
.dashboard-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dash-panel {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.dash-panel h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Chart bars */
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    padding-top: 10px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-1);
    border-radius: 4px 4px 0 0;
    position: relative;
    min-height: 20px;
    transition: height 0.6s ease;
}

.chart-bar-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.chart-bar-value {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Campaign Status */
.campaign-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.campaign-status {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.campaign-status.active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.campaign-status.completed {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent);
}

/* ========================================
   FEATURES GRID
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-card .badge {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
}

/* For Screen Owners / Advertisers Split */
.audience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.audience-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.audience-card > p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.audience-benefits {
    margin-bottom: 24px;
}

.audience-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.audience-benefit .icon { 
    color: #22c55e; 
    flex-shrink: 0;
}

/* ========================================
   LIVE DASHBOARD SECTION
   ======================================== */
.live-dashboard {
    background: var(--bg-secondary);
}

.live-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.live-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.live-stat .value {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
}

.live-stat .change {
    font-size: 0.8rem;
    color: #22c55e;
    font-weight: 600;
}

.live-stat .label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
    display: block;
}

.live-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.live-feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.live-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.live-feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========================================
   PAYMENT / EXCHANGE SECTION
   ======================================== */
.exchange-layout {
    display: grid;
    grid-template-columns: minmax(0, 480px) 1fr;
    gap: 28px;
    margin-bottom: 40px;
    align-items: start;
}

.payment-portal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    font-size: 0.88rem;
}

.portal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.portal-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.payment-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

.payment-tab {
    padding: 8px 14px;
    font-size: 0.78rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.payment-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    font-weight: 600;
}

.portal-campaign {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.portal-campaign-name {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.portal-campaign-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.portal-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    text-align: right;
}

.portal-status {
    font-size: 0.68rem;
    color: #22c55e;
    text-align: right;
}

.portal-methods {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.portal-method {
    padding: 7px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.portal-method.active {
    background: var(--accent);
    border-color: var(--accent);
}

.portal-divider {
    text-align: center;
    margin: 16px 0;
    position: relative;
}

.portal-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--border);
}

.portal-divider-icon {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
}

.portal-balance {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.portal-balance-label {
    font-weight: 600;
    font-size: 0.82rem;
}

.portal-balance-sub {
    font-size: 0.68rem;
    color: #22c55e;
}

.portal-balance-amount {
    font-size: 1.2rem;
    font-weight: 800;
    text-align: right;
}

.portal-balance-change {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

.portal-payout {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.portal-payout-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.portal-payout-amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

/* ═══ Interactive Payment Portal — new styles ═══ */

.portal-live-badge {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 600;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 4px;
}

.portal-view {
    display: none;
    animation: portalFadeIn 0.35s ease;
}
.portal-view--active {
    display: block;
}
@keyframes portalFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Campaign selector */
.portal-campaign-select {
    margin-bottom: 16px;
}
.portal-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.portal-select-wrap {
    position: relative;
}
.portal-select-wrap select {
    width: 100%;
    padding: 8px 32px 8px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 500;
    font-family: inherit;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
}
.portal-select-wrap select:focus {
    outline: none;
    border-color: var(--accent);
}
.portal-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.75rem;
    pointer-events: none;
}

/* Card / Bank / UPI Forms */
.portal-card-form {
    margin-bottom: 16px;
    animation: portalFadeIn 0.3s ease;
}
.portal-input-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.portal-input-row--half .portal-input-group {
    flex: 1;
}
.portal-input-group {
    flex: 1;
}
.portal-input-group--full {
    flex: 1;
}
.portal-input-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 5px;
}
.portal-input-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 10px;
    transition: border-color 0.2s;
}
.portal-input-wrap:focus-within {
    border-color: var(--accent);
}
.portal-input-wrap i {
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.portal-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 0.88rem;
    font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
    outline: none;
    letter-spacing: 0.02em;
}
.portal-input-wrap input::placeholder {
    color: rgba(255,255,255,0.2);
}
.portal-card-brand {
    flex-shrink: 0;
    min-width: 28px;
    text-align: center;
}

/* Bank Transfer info */
.portal-bank-info {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
}
.portal-bank-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.portal-bank-row:last-child {
    border-bottom: none;
}
.portal-bank-lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.portal-bank-val {
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'SF Mono', 'Menlo', monospace;
}

/* Pay button */
.portal-pay-btn {
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, #0071e3, #0077ed);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.portal-pay-btn:hover {
    background: linear-gradient(135deg, #0077ed, #0071e3);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,113,227,0.3);
}
.portal-pay-btn:active {
    transform: translateY(0);
}
.portal-pay-btn--success {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
}
.portal-pay-btn:disabled {
    cursor: not-allowed;
    opacity: 0.85;
}

/* Transactions */
.portal-transactions {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.portal-txn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
}
.portal-txn:last-child {
    border-bottom: none;
}
.portal-txn--new {
    animation: portalTxnSlide 0.4s ease;
    background: rgba(0,113,227,0.06);
    border-radius: 8px;
    padding: 12px 8px;
}
@keyframes portalTxnSlide {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.portal-txn-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}
.portal-txn-icon--paid {
    background: rgba(34,197,94,0.12);
    color: #22c55e;
}
.portal-txn-icon--refund {
    background: rgba(234,179,8,0.12);
    color: #eab308;
}
.portal-txn-icon--credit {
    background: rgba(0,113,227,0.12);
    color: #0071e3;
}
.portal-txn-info {
    flex: 1;
    min-width: 0;
}
.portal-txn-name {
    font-size: 0.76rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.portal-txn-date {
    font-size: 0.65rem;
    color: var(--text-muted);
}
.portal-txn-amt {
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}
.portal-txn-amt--debit {
    color: #ef4444;
}
.portal-txn-amt--credit {
    color: #22c55e;
}

/* ── Screen Owner: Earnings Chart ── */
.portal-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 100px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}
.portal-chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
}
.portal-chart-bar::before {
    content: '';
    width: 100%;
    max-width: 36px;
    height: 0%;
    background: linear-gradient(180deg, rgba(0,113,227,0.5), rgba(0,113,227,0.15));
    border-radius: 6px 6px 0 0;
    transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.portal-chart-bar--animated::before {
    height: var(--bar-h);
}
.portal-chart-bar--active::before {
    background: linear-gradient(180deg, #0071e3, rgba(0,113,227,0.4));
}
.portal-chart-val {
    position: absolute;
    top: -2px;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.4s 0.6s;
}
.portal-chart-bar--animated .portal-chart-val {
    opacity: 1;
}
.portal-chart-day {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 6px;
    position: absolute;
    bottom: -18px;
}
.portal-chart-bar--active .portal-chart-day {
    color: var(--accent);
    font-weight: 600;
}

/* ── Screen Owner: Screens Summary ── */
.portal-screens-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}
.portal-screen-stat {
    text-align: center;
    padding: 8px 4px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
}
.portal-screen-stat-num {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
}
.portal-screen-stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Screen Owner: Payout with progress ── */
.portal-payout-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}
.portal-payout-date {
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 2px;
}
.portal-payout-progress {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}
.portal-payout-bar {
    height: 100%;
    background: linear-gradient(90deg, #0071e3, #34c759);
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.portal-payout-bar-label {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* ── Mobile: portal compact ── */
@media (max-width: 768px) {
    .exchange-layout {
        grid-template-columns: 1fr !important;
    }
    .payment-portal {
        max-width: 100% !important;
        padding: 16px !important;
        border-radius: 18px !important;
    }
    .portal-methods {
        flex-wrap: wrap;
    }
    .portal-method {
        flex: 1;
        min-width: 0;
        justify-content: center;
        font-size: 0.7rem;
        padding: 7px 8px;
    }
    .portal-input-row--half {
        flex-direction: column;
        gap: 8px;
    }
    .portal-screens-summary {
        grid-template-columns: repeat(2, 1fr);
    }
    .portal-chart {
        height: 90px;
    }
    .portal-txn-name {
        font-size: 0.75rem;
    }
    .portal-txn-amt {
        font-size: 0.78rem;
    }
    .portal-pay-btn {
        padding: 12px;
        font-size: 0.85rem;
    }
}

.exchange-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.exchange-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s;
}

.exchange-feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.ef-icon {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.exchange-feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.exchange-feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Trusted Payment Partners */
.trusted-partners {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    text-align: center;
}

.trusted-partners h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.partner-logo {
    width: 64px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

/* ========================================
   TEAM ACCESS / SECURITY
   ======================================== */
.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.security-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.security-card .icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: block;
}

.security-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.security-card p {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Team Portal Mockup */
.team-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.team-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.team-info {
    flex: 1;
}

.team-info .name {
    font-weight: 600;
    font-size: 0.9rem;
}

.team-info .role {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.team-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* ========================================
   GLOBAL NETWORK
   ======================================== */
.network-map {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.network-map h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.network-map p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.city-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.city-pill {
    padding: 8px 16px;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ffffff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.tech-card .icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.tech-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.tech-card p {
    font-size: 0.83rem;
    color: var(--text-secondary);
}

/* Screen Types */
.screen-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.screen-type {
    padding: 6px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    text-align: center;
    background: var(--bg-secondary);
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 24px;
}

.cta-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.cta-feature p {
    font-size: 0.83rem;
    color: var(--text-secondary);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 700px) {
    .feature-cards {
        flex-direction: row !important;
        gap: 2rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        width: 100vw;
        justify-content: flex-start;
        align-items: stretch;
    }
    .feature-card {
        min-width: 85vw;
        max-width: 85vw;
        margin: 0 1rem 0 0;
        scroll-snap-align: start;
        height: auto;
    }
}
    }
    .dashboard-stat {
        padding: 14px;
    }
    .dashboard-stat .stat-value {
        font-size: 1.1rem;
    }
    .dashboard-bottom { grid-template-columns: 1fr; }
    .features-grid { 
        grid-template-columns: 1fr; 
        gap: 16px;
    }
    .audience-split { 
        grid-template-columns: 1fr; 
        gap: 16px;
    }
    .live-stats { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
    }
    .live-features { 
        grid-template-columns: 1fr; 
        gap: 12px;
    }
    .payment-layout { grid-template-columns: 1fr; }
    .exchange-layout { grid-template-columns: 1fr; }
    .exchange-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .payment-features { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
    }
    .security-grid { 
        grid-template-columns: 1fr; 
        gap: 16px;
    }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .cta-features { 
        grid-template-columns: 1fr; 
        gap: 12px;
    }
    .chart-container {
        padding: 16px;
    }
    .dashboard-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .live-stats {
        grid-template-columns: 1fr;
    }
    .payment-features {
        grid-template-columns: 1fr;
    }
    .exchange-features {
        grid-template-columns: 1fr;
    }
    .portal-methods {
        flex-direction: column;
    }
    #howItWorksGrid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

/* ========================================
   HOW IT WORKS — Apple-Inspired Design
   ======================================== */
.hiw-section {
    padding: 100px 0 120px;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.hiw-container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
}
.hiw-header {
    text-align: center;
    margin-bottom: 64px;
}
.hiw-title {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 600;
    color: #1d1d1f;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    margin: 0 0 14px;
    letter-spacing: -0.04em;
    line-height: 1.05;
}
.hiw-title span {
    font-weight: 700;
}
.hiw-subtitle {
    font-size: 19px;
    color: #86868b;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.01em;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
}
.hiw-subtitle a {
    color: #0071e3;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
}
.hiw-subtitle a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Grid ── */
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}
.hiw-card {
    text-align: center;
    display: flex;
    flex-direction: column;
}
/* Scroll-triggered: cards start invisible, animate in */
.hiw-anim {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hiw-anim.hiw-visible {
    opacity: 1;
    transform: translateY(0);
}
.hiw-card-visual {
    background: #000000;
    border-radius: 28px;
    padding: 40px 28px;
    margin-bottom: 20px;
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hiw-card:hover .hiw-card-visual {
    transform: scale(1.02);
}
.hiw-card-step {
    color: #0071e3;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
}
.hiw-card-step span {
    color: #1d1d1f;
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.01em;
    font-size: 16px;
}
.hiw-card-desc {
    color: #86868b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    max-width: 280px;
    margin-inline: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

/* ── Step 1: Map ── */
.hiw-search-bar {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.hiw-visible .hiw-search-bar {
    animation: hiwSearchFade 2s ease-out both;
}
.hiw-search-text {
    color: #ffffff;
    font-size: 13px;
    font-family: 'SF Mono', 'Menlo', 'Fira Code', monospace;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.hiw-search-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2997ff;
    animation: hiwDotPulse 2s ease-in-out infinite;
}
.hiw-search-icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}
.hiw-map-canvas {
    position: relative;
    width: 200px;
    height: 240px;
}
.hiw-map-svg {
    width: 100%;
    height: 100%;
}
/* India outline */
.hiw-india-outline {
    fill: rgba(255, 255, 255, 0.03);
    stroke: rgba(255, 255, 255, 0.18);
    stroke-width: 1.8;
    stroke-linejoin: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
}
.hiw-visible .hiw-india-outline {
    animation: hiwIndiaTrace 3s ease-out 0.2s forwards;
}
/* City labels */
.hiw-map-label {
    font-size: 8px;
    fill: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    opacity: 0;
}
.hiw-visible .hiw-map-label {
    animation: hiwLabelFade 0.5s ease-out 2s forwards;
}
.hiw-map-line {
    fill: none;
    stroke: rgba(41, 151, 255, 0.25);
    stroke-width: 1.2;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}
.hiw-visible .hiw-map-line {
    animation: hiwLineDraw 3s ease-out 0.5s forwards;
}
.hiw-map-line--2 { }
.hiw-visible .hiw-map-line--2 { animation-delay: 1s; }
.hiw-map-line--3 { }
.hiw-visible .hiw-map-line--3 { animation-delay: 1.5s; }
.hiw-map-line--4 { }
.hiw-visible .hiw-map-line--4 { animation-delay: 1.2s; }
.hiw-map-dot {
    fill: #2997ff;
    opacity: 0;
    transform-origin: center;
}
.hiw-visible .hiw-map-dot--1 { animation: hiwDotAppear 0.6s ease-out 0.3s forwards; }
.hiw-visible .hiw-map-dot--2 { animation: hiwDotAppear 0.6s ease-out 0.5s forwards; }
.hiw-visible .hiw-map-dot--3 { animation: hiwDotAppear 0.6s ease-out 0.7s forwards; }
.hiw-visible .hiw-map-dot--4 { animation: hiwDotAppear 0.6s ease-out 0.9s forwards; }
.hiw-visible .hiw-map-dot--5 { animation: hiwDotAppear 0.6s ease-out 1.1s forwards; }
.hiw-visible .hiw-map-dot--6 { animation: hiwDotAppear 0.6s ease-out 1.3s forwards; }
.hiw-visible .hiw-map-dot--7 { animation: hiwDotAppear 0.6s ease-out 1.5s forwards; }

/* Traveling dot */
.hiw-travel-dot {
    opacity: 0;
}
.hiw-visible .hiw-travel-dot {
    opacity: 0.7;
}

.hiw-map-pulse {
    fill: none;
    stroke: #2997ff;
    stroke-width: 2;
    opacity: 0;
}
.hiw-visible .hiw-map-pulse {
    animation: hiwPulseRing 3s ease-out 1.5s infinite;
}
.hiw-visible .hiw-map-pulse--2 { animation-delay: 2s; }
.hiw-visible .hiw-map-pulse--3 { animation-delay: 2.5s; }

/* ── Step 2: Schedule ── */
.hiw-schedule-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}
.hiw-sched {
    border-radius: 18px;
    padding: 18px 22px;
    color: #fff;
    text-align: left;
    opacity: 0;
    transform: translateY(20px) scale(0.92);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: box-shadow 0.3s ease;
}
.hiw-sched::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: hiwSchedShimmer 4s ease-in-out 2s infinite;
}
.hiw-sched:hover {
    box-shadow: 0 8px 32px rgba(41, 151, 255, 0.5);
}
.hiw-sched--1 {
    background: linear-gradient(135deg, #0071e3 0%, #0055b8 100%);
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(0, 113, 227, 0.4);
}
.hiw-visible .hiw-sched--1 {
    animation: hiwSchedPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards,
               hiwSchedFloat 3s ease-in-out 1.2s infinite;
}
.hiw-sched--2 {
    background: linear-gradient(135deg, #2997ff 0%, #0077d4 100%);
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(41, 151, 255, 0.35);
}
.hiw-visible .hiw-sched--2 {
    animation: hiwSchedPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards,
               hiwSchedFloat 3s ease-in-out 1.6s infinite;
}
.hiw-sched--3 {
    background: linear-gradient(135deg, #64d2ff 0%, #40b8e8 100%);
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(100, 210, 255, 0.3);
}
.hiw-visible .hiw-sched--3 {
    animation: hiwSchedPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.0s forwards,
               hiwSchedFloat 3s ease-in-out 2.0s infinite;
}
.hiw-sched-day {
    font-weight: 700;
    letter-spacing: -0.01em;
}
.hiw-sched-time {
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.85;
    letter-spacing: 0.01em;
}

/* ── Step 3: Upload ── */
.hiw-upload-zone {
    width: 180px;
    height: 180px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 2.5px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: hiwUploadBreathe 3s ease-in-out infinite;
    transition: border-color 0.3s, background 0.3s;
}
.hiw-card:hover .hiw-upload-zone {
    border-color: rgba(41, 151, 255, 0.45);
    background: rgba(41, 151, 255, 0.08);
}
.hiw-upload-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(41, 151, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    animation: hiwUploadBounce 2.5s ease-in-out infinite;
}
.hiw-upload-icon i {
    font-size: 22px;
    color: #2997ff;
}
.hiw-upload-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    letter-spacing: 0.01em;
}
.hiw-upload-bold {
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

/* ── Footer ── */
.hiw-footer {
    text-align: center;
    margin-top: 56px;
}
.hiw-footer p {
    color: #86868b;
    font-size: 17px;
    margin-bottom: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    letter-spacing: 0.01em;
    font-weight: 400;
}
.hiw-footer .btn {
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.01em;
    padding: 14px 36px;
    border-radius: 980px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
}

/* ═══════ Animations ═══════ */
@keyframes hiwSearchFade {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hiwDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: 0.6; }
}
@keyframes hiwLineDraw {
    to { stroke-dashoffset: 0; }
}
@keyframes hiwIndiaTrace {
    to { stroke-dashoffset: 0; fill: rgba(255, 255, 255, 0.04); }
}
@keyframes hiwLabelFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes hiwDotAppear {
    from { opacity: 0; transform: scale(0); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes hiwPulseRing {
    0%   { opacity: 0.6; r: inherit; stroke-width: 2; }
    100% { opacity: 0; r: 28; stroke-width: 0.5; }
}
@keyframes hiwSchedPop {
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hiwSchedFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-6px) scale(1.02); }
}
@keyframes hiwSchedShimmer {
    0%   { transform: translateX(-100%); }
    40%  { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}
@keyframes hiwUploadBreathe {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.03); }
}
@keyframes hiwUploadBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════════════════
   APPLE-INSPIRED OVERRIDES — All DOOH Sections
   SF Pro Display • Clean • Spacious • Black/White/Blue
   ═══════════════════════════════════════════════════════ */

/* ── Global Section Override ── */
.live-dashboard,
.cta-section {
    background: #f5f5f7 !important;
}
#features,
#features + .section,
#features ~ .section.live-dashboard + .section {
    background: #fff !important;
}

/* ── Section Headers — Apple Typography ── */
.section .section-header {
    text-align: center !important;
    margin-bottom: 64px !important;
}
.section .section-header .section-tag {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: #0071e3 !important;
    background: rgba(0, 113, 227, 0.06) !important;
    padding: 7px 18px !important;
    border-radius: 980px !important;
    border: 1px solid rgba(0, 113, 227, 0.12) !important;
}
.section .section-header .section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    color: #1d1d1f !important;
    line-height: 1.08 !important;
    margin-bottom: 16px !important;
}
.section .section-header .section-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 1.08rem !important;
    color: #6e6e73 !important;
    line-height: 1.7 !important;
    max-width: 560px !important;
    margin: 0 auto !important;
}
.section .section-header .section-subtitle strong {
    color: #0071e3 !important;
    font-weight: 700 !important;
}

/* ── Campaign Dashboard — Apple Clean ── */
.dashboard-section {
    background: #fff !important;
    padding: 100px 0 110px !important;
}
.dashboard-mockup {
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 28px !important;
    padding: 40px !important;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    -webkit-font-smoothing: antialiased !important;
    opacity: 0;
    transform: translateY(24px);
    animation: dashMockupIn 0.7s ease-out 0.1s forwards;
}
.dashboard-header {
    margin-bottom: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}
.dash-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34c759;
    box-shadow: 0 0 8px rgba(52, 199, 89, 0.5);
    animation: dashLiveBlink 2s ease-in-out infinite;
}
@keyframes dashLiveBlink {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(52, 199, 89, 0.5); }
    50% { opacity: 0.4; box-shadow: 0 0 4px rgba(52, 199, 89, 0.2); }
}
.dashboard-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    color: #1d1d1f !important;
}
.dashboard-subtitle {
    color: #86868b !important;
    font-size: 0.78rem !important;
    font-weight: 400 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
}
.dashboard-stats {
    gap: 14px !important;
    margin-bottom: 24px !important;
}
.dash-stat {
    background: #f9fafb !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 20px !important;
    padding: 24px 18px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02) !important;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, background 0.35s ease !important;
    opacity: 0;
    animation: dashStatPop 0.5s ease-out forwards;
    text-align: center !important;
}
.dash-stat:nth-child(1) { animation-delay: 0.1s; }
.dash-stat:nth-child(2) { animation-delay: 0.2s; }
.dash-stat:nth-child(3) { animation-delay: 0.3s; }
.dash-stat:nth-child(4) { animation-delay: 0.4s; }
.dash-stat:nth-child(5) { animation-delay: 0.5s; }
.dash-stat:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    background: #fff !important;
}
.dash-stat .value {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.1 !important;
    display: block !important;
    color: #1d1d1f !important;
}
.dash-stat .value.green,
.dash-stat .value.blue,
.dash-stat .value.purple,
.dash-stat .value.cyan,
.dash-stat .value.amber { color: #1d1d1f !important; }
.dash-stat .label {
    color: #86868b !important;
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    margin-top: 8px !important;
    display: block !important;
}
.dashboard-bottom {
    gap: 16px !important;
}
.dash-panel {
    background: #f9fafb !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 20px !important;
    padding: 28px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02) !important;
    opacity: 0;
    transform: translateY(16px);
    animation: dashPanelSlide 0.6s ease-out forwards;
}
.dash-panel:nth-child(1) { animation-delay: 0.6s; }
.dash-panel:nth-child(2) { animation-delay: 0.8s; }
.dash-panel h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    color: #1d1d1f !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 18px !important;
}
.campaign-item {
    border-bottom-color: rgba(0, 0, 0, 0.05) !important;
    color: #1d1d1f !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    padding: 12px 0 !important;
}
.campaign-status {
    border-radius: 980px !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    padding: 4px 12px !important;
}
.campaign-status.active {
    background: rgba(52, 199, 89, 0.1) !important;
    color: #34c759 !important;
    font-weight: 700 !important;
}
.campaign-status.completed {
    background: rgba(0, 122, 255, 0.08) !important;
    color: #007aff !important;
}
.chart-bars {
    height: 130px !important;
    gap: 14px !important;
    padding-top: 16px !important;
}
.chart-bar {
    background: linear-gradient(180deg, #0071e3 0%, #005bb5 100%) !important;
    border-radius: 10px 10px 4px 4px !important;
    transition: transform 0.3s ease !important;
    transform-origin: bottom !important;
    animation: dashBarGrow 0.6s ease-out forwards;
    transform: scaleY(0);
}
.chart-bar:nth-child(1) { animation-delay: 0.5s; }
.chart-bar:nth-child(2) { animation-delay: 0.6s; }
.chart-bar:nth-child(3) { animation-delay: 0.7s; }
.chart-bar:nth-child(4) { animation-delay: 0.8s; }
.chart-bar:nth-child(5) { animation-delay: 0.9s; }
.chart-bar:nth-child(6) { animation-delay: 1.0s; }
.chart-bar:nth-child(7) { animation-delay: 1.1s; }
.chart-bar:hover {
    transform: scaleY(1.05) !important;
    transform-origin: bottom !important;
}
.chart-bar-label {
    color: #86868b !important;
    font-size: 0.68rem !important;
    font-weight: 500 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
}
.chart-bar-value {
    color: #1d1d1f !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    letter-spacing: -0.02em !important;
}

/* ── Dashboard Animations ── */
@keyframes dashMockupIn {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes dashStatPop {
    0% { opacity: 0; transform: translateY(12px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes dashBarGrow {
    to { transform: scaleY(1); }
}
@keyframes dashPanelSlide {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Screen Type Cards — Auto-scroll marquee ── */
.screen-scroll-wrapper {
    overflow: hidden;
    margin: 0 -40px 72px;
    padding: 10px 0 20px;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.screen-scroll-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 24px;
    animation: screenScroll 45s linear infinite;
    width: max-content !important;
    will-change: transform;
}
.screen-scroll-track:hover {
    animation-play-state: paused;
}
@keyframes screenScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.screen-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    flex: 0 0 380px !important;
    width: 380px !important;
    min-width: 380px !important;
}
.screen-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Image area — real photos */
.screen-card-img {
    height: 240px;
    position: relative;
    overflow: hidden;
    background-color: #1a1a2e;
}
.screen-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

/* Body */
.screen-card-body {
    padding: 24px 26px 26px;
}
.screen-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.screen-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 113, 227, 0.08);
    color: #0071e3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.screen-card-head h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin: 0;
    flex: 1;
}
.screen-card-arrow {
    color: #0071e3;
    font-size: 13px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.3s, transform 0.3s;
}
.screen-card:hover .screen-card-arrow {
    opacity: 1;
    transform: translateX(0);
}
.screen-card-body p {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    font-size: 0.88rem;
    color: #6e6e73;
    line-height: 1.6;
    margin: 0 0 16px;
}
.screen-card-price {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    font-size: 0.78rem;
    color: #86868b;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f9fafb;
    border-radius: 10px;
}
.screen-card-price strong {
    color: #1d1d1f;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.screen-card-price-bar {
    width: 3px;
    height: 18px;
    background: #0071e3;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Screen scroll responsive */
@media (max-width: 768px) {
    .screen-scroll-wrapper {
        margin: 0 -20px 60px;
    }
    .screen-card {
        width: 300px;
    }
    .screen-card-img {
        height: 190px;
    }
}

/* ── Audience Split — Apple Cards ── */
.audience-split {
    gap: 24px !important;
    margin-top: 20px !important;
}
.audience-card {
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 24px !important;
    padding: 44px 36px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease !important;
}
.audience-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08) !important;
}
.audience-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    color: #1d1d1f !important;
    margin-bottom: 14px !important;
}
.audience-card > p {
    color: #6e6e73 !important;
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
}
.audience-benefit {
    color: #1d1d1f !important;
    font-size: 0.88rem !important;
}
.audience-benefit .icon {
    color: #34c759 !important;
}
.audience-card .btn-primary {
    background: #0071e3 !important;
    border-radius: 980px !important;
    padding: 14px 32px !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    letter-spacing: -0.01em !important;
    border: none !important;
    color: #fff !important;
    transition: background 0.2s !important;
}
.audience-card .btn-primary:hover {
    background: #0077ed !important;
}

/* ── Live Dashboard — Apple Colour Stats ── */
.live-dashboard {
    background: #fbfbfd !important;
    padding: 100px 0 !important;
}
.live-dashboard .section-header {
    text-align: center !important;
    margin-bottom: 48px !important;
}
.live-dashboard .section-tag {
    display: inline-block !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #0071e3 !important;
    background: rgba(0, 113, 227, 0.08) !important;
    padding: 6px 16px !important;
    border-radius: 980px !important;
    margin-bottom: 14px !important;
}
.live-dashboard .section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.04em !important;
    color: #1d1d1f !important;
    margin-bottom: 10px !important;
}
.live-dashboard .section-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    color: #86868b !important;
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    max-width: 560px !important;
    margin: 0 auto !important;
}
/* Stat cards — Black / Blue / White / Gray palette */
.live-stats {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
}
.live-stat {
    border: none !important;
    border-radius: 22px !important;
    padding: 32px 28px !important;
    text-align: center !important;
    transition: transform 0.35s cubic-bezier(.25,.46,.45,.94), box-shadow 0.35s ease !important;
}
.live-stat:hover {
    transform: translateY(-4px) !important;
}
/* Card 1 — Black */
.live-stat--blue {
    background: #1d1d1f !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15) !important;
}
.live-stat--blue .value { color: #ffffff !important; }
.live-stat--blue .change { color: #30d158 !important; background: rgba(48,209,88,0.15) !important; }
.live-stat--blue .label { color: rgba(255,255,255,0.55) !important; }
.live-stat--blue:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.25) !important; }
/* Card 2 — Apple Blue */
.live-stat--purple {
    background: #0071e3 !important;
    box-shadow: 0 4px 30px rgba(0, 113, 227, 0.2) !important;
}
.live-stat--purple .value { color: #ffffff !important; }
.live-stat--purple .change { color: #fff !important; background: rgba(255,255,255,0.2) !important; }
.live-stat--purple .label { color: rgba(255,255,255,0.65) !important; }
.live-stat--purple:hover { box-shadow: 0 12px 48px rgba(0,113,227,0.35) !important; }
/* Card 3 — White */
.live-stat--teal {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04) !important;
}
.live-stat--teal .value { color: #1d1d1f !important; }
.live-stat--teal .change { color: #34c759 !important; background: rgba(52,199,89,0.1) !important; }
.live-stat--teal .label { color: #86868b !important; }
.live-stat--teal:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08) !important; }
/* Card 4 — Gray */
.live-stat--orange {
    background: #f5f5f7 !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03) !important;
}
.live-stat--orange .value { color: #1d1d1f !important; }
.live-stat--orange .change { color: #0071e3 !important; background: rgba(0,113,227,0.08) !important; }
.live-stat--orange .label { color: #6e6e73 !important; }
.live-stat--orange:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08) !important; }

.live-stat .value {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    display: block !important;
    margin-bottom: 4px !important;
}
.live-stat .change {
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    padding: 3px 10px !important;
    border-radius: 980px !important;
    display: inline-block !important;
    margin-bottom: 8px !important;
}
.live-stat .label {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    display: block !important;
}

/* Feature cards — Black / Blue / White / Gray */
.live-features {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
}
.live-feature {
    border: none !important;
    border-radius: 22px !important;
    padding: 32px 26px !important;
    transition: transform 0.35s cubic-bezier(.25,.46,.45,.94), box-shadow 0.35s ease !important;
    position: relative !important;
    overflow: hidden !important;
}
.live-feature:hover {
    transform: translateY(-4px) !important;
}
/* Icon bubble */
.live-feature .lf-icon {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.15rem !important;
    margin-bottom: 16px !important;
}
/* Feature 1 — Black */
.lf--blue {
    background: #1d1d1f !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12) !important;
}
.lf--blue .lf-icon {
    background: rgba(255,255,255,0.1) !important;
    color: #0071e3 !important;
}
.lf--blue h4 { color: #ffffff !important; }
.lf--blue p  { color: rgba(255,255,255,0.55) !important; }
.lf--blue:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.22) !important; }
/* Feature 2 — White */
.lf--green {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04) !important;
}
.lf--green .lf-icon {
    background: rgba(0,113,227,0.08) !important;
    color: #0071e3 !important;
}
.lf--green h4 { color: #1d1d1f !important; }
.lf--green p  { color: #86868b !important; }
.lf--green:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08) !important; }
/* Feature 3 — Gray */
.lf--purple {
    background: #f5f5f7 !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03) !important;
}
.lf--purple .lf-icon {
    background: rgba(0,0,0,0.06) !important;
    color: #1d1d1f !important;
}
.lf--purple h4 { color: #1d1d1f !important; }
.lf--purple p  { color: #6e6e73 !important; }
.lf--purple:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08) !important; }
/* Feature 4 — Blue */
.lf--orange {
    background: #0071e3 !important;
    box-shadow: 0 4px 30px rgba(0,113,227,0.2) !important;
}
.lf--orange .lf-icon {
    background: rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
}
.lf--orange h4 { color: #ffffff !important; }
.lf--orange p  { color: rgba(255,255,255,0.65) !important; }
.lf--orange:hover { box-shadow: 0 12px 48px rgba(0,113,227,0.35) !important; }

.live-feature h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 6px !important;
}
.live-feature p {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .live-stats { grid-template-columns: repeat(2, 1fr) !important; }
    .live-features { grid-template-columns: 1fr !important; }
    .live-dashboard .section-title { font-size: 2rem !important; }
}

/* Live Dashboard — show full desktop layout as a miniature on phones */
@media (max-width: 960px) {
    .live-dashboard > .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        overflow: visible !important;
        padding: 0 12px !important;
    }
    .live-dashboard-mockup {
        width: 100% !important;
        min-width: 0 !important;
        flex-shrink: 1 !important;
        zoom: 1 !important;
        transform: none !important;
        margin: 24px auto 0 !important;
    }
    .live-dashboard-mockup .live-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    .live-dashboard-mockup .live-features {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}
@media (max-width: 768px) {
    .live-dashboard-mockup {
        width: 100% !important;
        min-width: 0 !important;
        zoom: 1 !important;
    }
    .live-dashboard-mockup .live-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    .live-dashboard-mockup .live-features {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

/* ── Payment/Exchange — White Apple Treatment ── */
.payment-exchange-section {
    background: #ffffff !important;
    padding: 100px 0 !important;
}
.payment-exchange-section .section-header {
    text-align: center !important;
    margin-bottom: 52px !important;
}
.payment-exchange-section .section-tag {
    display: inline-block !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #0071e3 !important;
    background: rgba(0, 113, 227, 0.08) !important;
    padding: 6px 16px !important;
    border-radius: 980px !important;
    margin-bottom: 14px !important;
}
.payment-exchange-section .section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.04em !important;
    color: #1d1d1f !important;
    margin-bottom: 10px !important;
}
.payment-exchange-section .section-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    color: #86868b !important;
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    max-width: 500px !important;
    margin: 0 auto !important;
}
.exchange-layout {
    gap: 28px !important;
}
/* Payment Portal — White glass card */
.payment-portal {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 22px !important;
    padding: 24px !important;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06) !important;
    transition: box-shadow 0.4s ease !important;
}
.payment-portal:hover {
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.1) !important;
}
.portal-header {
    color: #1d1d1f !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    letter-spacing: -0.02em !important;
}
.portal-icon {
    background: #0071e3 !important;
    color: #fff !important;
}
/* Tab buttons */
.payment-tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    gap: 0 !important;
}
.payment-tab {
    background: none !important;
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
    padding: 10px 18px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    color: #86868b !important;
    border-bottom: 2px solid transparent !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    transition: color 0.3s, border-color 0.3s !important;
}
.payment-tab:hover {
    color: #1d1d1f !important;
}
.payment-tab.active {
    color: #0071e3 !important;
    border-bottom-color: #0071e3 !important;
    font-weight: 600 !important;
}
/* Animated bouncing arrow divider */
.portal-arrow-bounce {
    animation: portalArrowBounce 2s ease-in-out infinite !important;
}
@keyframes portalArrowBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}
/* Campaign info */
.portal-campaign-name {
    color: #1d1d1f !important;
    font-weight: 600 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
}
.portal-campaign-desc {
    color: #86868b !important;
    font-size: 0.82rem !important;
}
.portal-amount {
    color: #0071e3 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    letter-spacing: -0.03em !important;
}
.portal-status {
    color: #34c759 !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
}
/* Payment method buttons */
.portal-methods {
    display: flex !important;
    gap: 10px !important;
}
.portal-method {
    background: #f5f5f7 !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 12px !important;
    color: #6e6e73 !important;
    padding: 10px 18px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    outline: none !important;
}
.portal-method:hover {
    background: #e8e8ed !important;
    color: #1d1d1f !important;
}
.portal-method.active {
    background: #0071e3 !important;
    border-color: #0071e3 !important;
    color: #fff !important;
}
/* Divider */
.portal-divider::before {
    background: rgba(0, 0, 0, 0.08) !important;
}
.portal-divider-icon {
    background: #f5f5f7 !important;
    color: #86868b !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
}
/* Balance */
.portal-balance-label {
    color: #1d1d1f !important;
    font-weight: 600 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
}
.portal-balance-sub {
    color: #34c759 !important;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
}
.live-dot-pay {
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    background: #34c759 !important;
    border-radius: 50% !important;
    margin-right: 4px !important;
    animation: payDotPulse 2s ease-in-out infinite !important;
}
@keyframes payDotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.portal-balance-amount {
    color: #1d1d1f !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    letter-spacing: -0.03em !important;
}
.portal-balance-change {
    color: #86868b !important;
    font-size: 0.8rem !important;
}
/* Payout box */
.portal-payout {
    background: #f5f5f7 !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 16px !important;
    padding: 18px 20px !important;
}
.portal-payout-label {
    color: #86868b !important;
    font-size: 0.82rem !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
}
.portal-payout-amount {
    color: #0071e3 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    letter-spacing: -0.02em !important;
}

/* Exchange Feature Cards — Alternating Apple palette */
.exchange-feature-card {
    border: none !important;
    border-radius: 22px !important;
    padding: 30px 26px !important;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease !important;
}
.exchange-feature-card:hover {
    transform: translateY(-4px) !important;
}
.ef-icon {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    margin-bottom: 16px !important;
}
/* Blue card */
.ef-card--blue {
    background: #0071e3 !important;
    box-shadow: 0 4px 30px rgba(0, 113, 227, 0.15) !important;
}
.ef-card--blue .ef-icon { background: rgba(255,255,255,0.2) !important; color: #fff !important; }
.ef-card--blue h4 { color: #fff !important; font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important; font-weight: 700 !important; letter-spacing: -0.01em !important; }
.ef-card--blue p { color: rgba(255,255,255,0.7) !important; font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important; font-size: 0.82rem !important; }
.ef-card--blue:hover { box-shadow: 0 12px 48px rgba(0,113,227,0.3) !important; }
/* White card */
.ef-card--white {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04) !important;
}
.ef-card--white .ef-icon { background: rgba(0,113,227,0.08) !important; color: #0071e3 !important; }
.ef-card--white h4 { color: #1d1d1f !important; font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important; font-weight: 700 !important; letter-spacing: -0.01em !important; }
.ef-card--white p { color: #86868b !important; font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important; font-size: 0.82rem !important; }
.ef-card--white:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08) !important; }
/* Gray card */
.ef-card--gray {
    background: #f5f5f7 !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03) !important;
}
.ef-card--gray .ef-icon { background: rgba(0,0,0,0.06) !important; color: #1d1d1f !important; }
.ef-card--gray h4 { color: #1d1d1f !important; font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important; font-weight: 700 !important; letter-spacing: -0.01em !important; }
.ef-card--gray p { color: #6e6e73 !important; font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important; font-size: 0.82rem !important; }
.ef-card--gray:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08) !important; }
/* Dark card */
.ef-card--dark {
    background: #1d1d1f !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12) !important;
}
.ef-card--dark .ef-icon { background: rgba(255,255,255,0.1) !important; color: #0071e3 !important; }
.ef-card--dark h4 { color: #fff !important; font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important; font-weight: 700 !important; letter-spacing: -0.01em !important; }
.ef-card--dark p { color: rgba(255,255,255,0.55) !important; font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important; font-size: 0.82rem !important; }
.ef-card--dark:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.22) !important; }

@media (max-width: 768px) {
    .payment-exchange-section .section-title { font-size: 2rem !important; }
    .exchange-features { grid-template-columns: 1fr !important; }
}

/* ── Trusted Partners — removed (was empty) ── */

/* ── Security / Team — White Apple ── */
.team-access-section {
    background: #ffffff !important;
    padding: 100px 0 !important;
}
.team-access-section .section-header {
    text-align: center !important;
    margin-bottom: 52px !important;
}
.team-access-section .section-tag {
    display: inline-block !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #0071e3 !important;
    background: rgba(0, 113, 227, 0.08) !important;
    padding: 6px 16px !important;
    border-radius: 980px !important;
    margin-bottom: 14px !important;
}
.team-access-section .section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.04em !important;
    color: #1d1d1f !important;
    margin-bottom: 10px !important;
    line-height: 1.15 !important;
}
.team-access-section .section-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    color: #86868b !important;
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    max-width: 520px !important;
    margin: 0 auto !important;
}

/* Security cards grid */
.team-access-section .security-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 48px !important;
}
/* Card scroll animation */
.sc-anim {
    opacity: 0 !important;
    transform: translateY(32px) !important;
    transition: opacity 0.6s cubic-bezier(.25,.46,.45,.94), transform 0.6s cubic-bezier(.25,.46,.45,.94) !important;
}
.sc-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.security-card {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    border-radius: 22px !important;
    padding: 30px 26px !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04) !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}
.security-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08) !important;
}
/* Icon bubbles */
.sc-icon {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    margin-bottom: 18px !important;
}
.sc-icon--blue  { background: rgba(0,113,227,0.08) !important; color: #0071e3 !important; }
.sc-icon--white { background: #f5f5f7 !important; color: #1d1d1f !important; }
.sc-icon--gray  { background: rgba(0,0,0,0.04) !important; color: #6e6e73 !important; }
.sc-icon--dark  { background: #1d1d1f !important; color: #ffffff !important; }
.security-card .icon {
    display: none !important;
}
.security-card h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    color: #1d1d1f !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 6px !important;
}
.security-card p {
    color: #86868b !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
}

/* Team Mockup — white card */
.team-mockup {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 24px !important;
    padding: 32px !important;
    box-shadow: 0 4px 40px rgba(0,0,0,0.06) !important;
    max-width: 680px !important;
    margin: 0 auto !important;
}
.tm-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 24px !important;
    padding-bottom: 16px !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}
.tm-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    color: #1d1d1f !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    letter-spacing: -0.02em !important;
}
.tm-badge-count {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #0071e3 !important;
    background: rgba(0,113,227,0.08) !important;
    padding: 4px 12px !important;
    border-radius: 980px !important;
}
/* Team member row animation */
.tm-anim {
    opacity: 0 !important;
    transform: translateX(-20px) !important;
    transition: opacity 0.5s ease, transform 0.5s ease !important;
}
.tm-visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
}
.team-member {
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    padding: 14px 0 !important;
    display: flex !important;
    align-items: center !important;
    transition: background 0.25s ease !important;
    border-radius: 12px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.team-member:last-child {
    border-bottom: none !important;
}
.team-member:hover {
    background: #f5f5f7 !important;
}
.team-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}
.team-info {
    flex: 1 !important;
    margin-left: 14px !important;
}
.team-info .name {
    color: #1d1d1f !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    display: block !important;
}
.team-info .role {
    color: #86868b !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 400 !important;
    display: block !important;
    margin-top: 2px !important;
}
.team-badge {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    color: #34c759 !important;
    background: rgba(52,199,89,0.08) !important;
    padding: 4px 12px !important;
    border-radius: 980px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}
.team-dot {
    width: 6px !important;
    height: 6px !important;
    background: #34c759 !important;
    border-radius: 50% !important;
    display: inline-block !important;
    animation: teamDotPulse 2s ease-in-out infinite !important;
}
@keyframes teamDotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Cycling name animation */
.team-name-cycle {
    animation: teamNameFade 0.4s ease !important;
}
@keyframes teamNameFade {
    0%   { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .team-access-section .security-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .team-access-section .section-title { font-size: 2rem !important; }
    .team-mockup { padding: 20px !important; }
}

/* ── Network / Tech — White Apple ── */
.network-section {
    background: #fbfbfd !important;
    padding: 100px 0 !important;
}
.network-section .section-header {
    text-align: center !important;
    margin-bottom: 52px !important;
}
.network-section .section-tag {
    display: inline-block !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #0071e3 !important;
    background: rgba(0, 113, 227, 0.08) !important;
    padding: 6px 16px !important;
    border-radius: 980px !important;
    margin-bottom: 14px !important;
}
.network-section .section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.04em !important;
    color: #1d1d1f !important;
    margin-bottom: 10px !important;
}
.network-section .section-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    color: #86868b !important;
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    max-width: 560px !important;
    margin: 0 auto !important;
}
/* Network map card — true black */
.network-map {
    background: #000000 !important;
    border: none !important;
    border-radius: 28px !important;
    padding: 40px 36px !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12) !important;
    margin-bottom: 48px !important;
}
.network-map h3 {
    color: #f5f5f7 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    text-align: center !important;
    margin-bottom: 4px !important;
}
.network-count {
    text-align: center !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-size: 2.4rem !important;
    font-weight: 800 !important;
    color: #2997ff !important;
    letter-spacing: -0.04em !important;
    margin-bottom: 28px !important;
}
/* Section label */
.city-pills-label {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #a1a1a6 !important;
    margin-bottom: 10px !important;
    padding-left: 4px !important;
}
.city-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 22px !important;
}
.city-pill {
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: #ffffff !important;
    border-radius: 980px !important;
    padding: 8px 16px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    transition: all 0.25s ease !important;
}
.network-map .city-pill,
.network-map .marquee-track .city-pill,
.marquee-wrap .city-pill {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
.city-pill:hover {
    background: #2997ff !important;
    color: #fff !important;
    border-color: #2997ff !important;
    transform: translateY(-2px) !important;
}
/* Tech heading */
.tech-heading {
    text-align: center !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #86868b !important;
    margin-bottom: 20px !important;
}
/* Tech cards — dark */
.tc-anim {
    opacity: 0 !important;
    transform: translateY(28px) !important;
    transition: opacity 0.6s cubic-bezier(.25,.46,.45,.94), transform 0.6s cubic-bezier(.25,.46,.45,.94) !important;
}
.tc-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.tech-card {
    background: #000000 !important;
    border: none !important;
    border-radius: 22px !important;
    padding: 30px 26px !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12) !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}
.tech-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 50px rgba(0,0,0,0.2) !important;
}
.tc-icon {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    margin-bottom: 16px !important;
    background: rgba(0,113,227,0.08) !important;
    color: #0071e3 !important;
}
.tech-card .icon { display: none !important; }
.tech-card h4 {
    color: #f5f5f7 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 6px !important;
}
.tech-card p {
    color: #a1a1a6 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
}
/* Marquee auto-scroll */
.marquee-wrap {
    overflow: hidden !important;
    width: 100% !important;
    margin-bottom: 10px !important;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent) !important;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent) !important;
}
.marquee-track {
    display: flex !important;
    gap: 10px !important;
    width: max-content !important;
}
.marquee-left {
    animation: marqueeLeft 25s linear infinite !important;
}
.marquee-right {
    animation: marqueeRight 28s linear infinite !important;
}
@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
/* Screen type pills */
.screen-types {
    border-top: 1px solid rgba(0,0,0,0.06) !important;
    margin-top: 36px !important;
    padding-top: 28px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
}
.screen-type {
    background: #f5f5f7 !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    color: #6e6e73 !important;
    border-radius: 10px !important;
    padding: 8px 16px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
}
@media (max-width: 768px) {
    .network-section .section-title { font-size: 2rem !important; }
    .network-count { font-size: 1.8rem !important; }
    .tech-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ── CTA — Apple-Inspired Bold Card ── */
.cta-section {
    background: #fbfbfd !important;
    padding: 80px 0 100px !important;
}
.cta-apple-card {
    background: #34c759 !important;
    border-radius: 32px !important;
    padding: 80px 60px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}
.cta-tag {
    display: inline-block !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: rgba(0,0,0,0.4) !important;
    background: rgba(0,0,0,0.08) !important;
    padding: 6px 16px !important;
    border-radius: 980px !important;
    margin-bottom: 28px !important;
}
.cta-hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
    font-size: clamp(2.8rem, 6vw, 4.5rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    color: #1a1a2e !important;
    line-height: 1.05 !important;
    margin-bottom: 20px !important;
}
.cta-city-type {
    color: #1a1a2e !important;
    font-weight: 800 !important;
}
.cta-cursor {
    color: rgba(0,0,0,0.35) !important;
    animation: ctaBlink 1s step-end infinite !important;
}
@keyframes ctaBlink {
    50% { opacity: 0; }
}
.cta-hero-sub {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    color: rgba(0,0,0,0.55) !important;
    line-height: 1.7 !important;
    margin-bottom: 36px !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.cta-btn-row {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    margin-bottom: 48px !important;
}
.cta-btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    background: #1a1a2e !important;
    color: #ffffff !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    padding: 16px 32px !important;
    border-radius: 14px !important;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.cta-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2) !important;
}
.cta-or {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.82rem !important;
    color: rgba(0,0,0,0.35) !important;
    font-weight: 500 !important;
}
.cta-btn-outline {
    display: inline-flex !important;
    align-items: center !important;
    background: #ffffff !important;
    color: #1a1a2e !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    padding: 16px 32px !important;
    border-radius: 14px !important;
    text-decoration: none !important;
    border: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.cta-btn-outline:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
}
.cta-trust-row {
    display: flex !important;
    justify-content: center !important;
    gap: 32px !important;
    flex-wrap: wrap !important;
}
.cta-trust-item {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: rgba(0,0,0,0.45) !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.cta-trust-item i {
    font-size: 0.85rem !important;
}
@media (max-width: 768px) {
    .cta-apple-card {
        padding: 32px 18px !important;
        border-radius: 20px !important;
    }
    .cta-hero-title {
        font-size: 1.8rem !important;
        line-height: 1.1 !important;
        margin-bottom: 14px !important;
    }
    .cta-hero-sub {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 24px !important;
    }
    .cta-btn-row {
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 28px !important;
    }
    .cta-btn-primary,
    .cta-btn-outline {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 18px !important;
        font-size: 0.85rem !important;
    }
    .cta-trust-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .cta-trust-item {
        font-size: 0.78rem !important;
    }
}

/* ── Gradient text fix for Apple sections ── */
.section .gradient-text {
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}


/* ═══════════════════════════════════════════
   PLATFORM DEMO MOCKUP — Animated Dashboard
   Black/Blue/White Pixelspot palette
   ═══════════════════════════════════════════ */
.platform-demo-section {
    padding: 60px 0 80px;
    background: #fff;
}
.platform-mockup {
    display: grid;
    grid-template-columns: 380px 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 580px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #fff;
}

/* ── Sidebar ── */
.pm-sidebar {
    background: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    padding: 24px 22px;
    overflow-y: auto;
    scrollbar-width: none;
}
.pm-sidebar::-webkit-scrollbar { display: none; }
.pm-back {
    color: #86868b;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pm-back:hover { color: #0071e3; }
.pm-sidebar-title {
    color: #1d1d1f;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
}
.pm-search-row {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}
.pm-search-input {
    flex: 1;
    background: #f5f5f7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 10px 14px;
    color: #86868b;
    font-size: 12px;
}
.pm-search-country {
    background: #f5f5f7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 10px 10px;
    color: #1d1d1f;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.pm-search-country i { font-size: 8px; color: #86868b; }
.pm-search-btn {
    background: #0071e3;
    border: none;
    border-radius: 10px;
    padding: 10px 12px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}
.pm-search-btn:hover { background: #0077ed; }
.pm-filters {
    color: #86868b;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pm-try {
    background: #0071e3;
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}
.pm-info {
    background: rgba(0, 113, 227, 0.04);
    border: 1px solid rgba(0, 113, 227, 0.1);
    border-radius: 10px;
    padding: 10px 12px;
    color: #6e6e73;
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 16px;
}
.pm-info strong { color: #1d1d1f; }
.pm-info i { color: #0071e3; margin-right: 4px; }

/* ── Board Listings ── */
.pm-board {
    display: grid;
    grid-template-columns: 70px 1fr auto auto;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-20px);
    animation: pmBoardSlide 0.6s ease-out forwards;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.pm-board--1 { animation-delay: 0.3s; }
.pm-board--2 { animation-delay: 0.5s; }
.pm-board--3 { animation-delay: 0.7s; }
.pm-board--4 { animation-delay: 0.9s; }
.pm-board:hover {
    border-color: rgba(0, 113, 227, 0.3);
    box-shadow: 0 2px 12px rgba(0, 113, 227, 0.08);
}
.pm-board-thumb {
    width: 70px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e8ecf2, #dde3ed);
    position: relative;
    overflow: hidden;
}
.pm-board-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,113,227,0.08), rgba(41,151,255,0.04));
}
.pm-board-info {
    min-width: 0;
}
.pm-board-type {
    color: #2997ff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 3px;
}
.pm-board-badge {
    width: 8px;
    height: 8px;
    background: #0071e3;
    border-radius: 2px;
    display: inline-block;
}
.pm-board-live {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #30d158;
    display: inline-block;
    animation: pmLivePulse 2s ease-in-out infinite;
}
.pm-board-name {
    color: #1d1d1f;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}
.pm-board-vendor {
    color: #86868b;
    font-size: 10px;
    margin-top: 1px;
}
.pm-board-price {
    color: #1d1d1f;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.pm-board-price sup {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.6;
}
.pm-board-add {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0071e3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}
.pm-board-add:hover {
    background: #2997ff;
    transform: scale(1.15);
}

/* ── Map Panel ── */
.pm-map {
    background: #fff;
    position: relative;
    overflow: hidden;
}
.pm-map-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.pm-map-svg {
    width: 100%;
    height: 100%;
}
.pm-grid-line {
    stroke: rgba(0, 0, 0, 0.04);
    stroke-width: 1;
}
.pm-road {
    fill: none;
    stroke: rgba(0, 113, 227, 0.12);
    stroke-width: 2;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: pmRoadDraw 4s ease-out 0.5s forwards;
}
.pm-road--2 {
    stroke: rgba(0, 113, 227, 0.06);
    animation-delay: 1s;
}

/* ── Map Markers ── */
.pm-marker {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0071e3;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 113, 227, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    transform: scale(0);
    animation: pmMarkerPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: transform 0.2s;
    z-index: 2;
}
.pm-marker:hover { transform: scale(1.2); }
.pm-marker--1 { animation-delay: 0.8s; }
.pm-marker--2 { animation-delay: 1.0s; background: #0071e3; width: 42px; height: 42px; font-size: 14px; }
.pm-marker--3 { animation-delay: 1.2s; }
.pm-marker--4 { animation-delay: 1.4s; width: 30px; height: 30px; font-size: 11px; }
.pm-marker--5 { animation-delay: 1.6s; }
.pm-marker--6 { animation-delay: 1.8s; width: 30px; height: 30px; font-size: 11px; }
.pm-marker--7 { animation-delay: 2.0s; }
.pm-marker--sm {
    width: 10px;
    height: 10px;
    background: #ff9500;
    border: 2px solid #fff;
    box-shadow: 0 1px 6px rgba(255, 149, 0, 0.3);
    font-size: 0;
}
.pm-marker--sm:nth-child(8) { animation-delay: 1.1s; }
.pm-marker--sm:nth-child(9) { animation-delay: 1.5s; }
.pm-marker--sm:nth-child(10) { animation-delay: 1.9s; }
.pm-marker--sm:nth-child(11) { animation-delay: 2.2s; }

/* Marker pulse ring */
.pm-marker::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 113, 227, 0.4);
    animation: pmMarkerRing 3s ease-out infinite;
}
.pm-marker--sm::before { display: none; }

/* ── Map Footer ── */
.pm-map-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 3;
}
.pm-spend {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 20px;
    color: #1d1d1f;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.pm-spend-val {
    color: #2997ff;
    font-weight: 700;
}
.pm-spend i { opacity: 0.5; font-size: 11px; margin-left: 3px; }
.pm-selected {
    background: #0071e3;
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pm-selected i:first-child { color: #2997ff; }

/* ── Tools Sidebar ── */
.pm-tools {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 3;
}
.pm-tool {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #86868b;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.pm-tool:hover {
    background: #fff;
    color: #0071e3;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.12);
}
.pm-tool--active {
    background: #0071e3;
    color: #fff;
    border-color: #0071e3;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.2);
}

/* ── Platform Mockup Animations ── */
@keyframes pmBoardSlide {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pmLivePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@keyframes pmRoadDraw {
    to { stroke-dashoffset: 0; }
}
@keyframes pmMarkerPop {
    to { opacity: 1; transform: scale(1); }
}
@keyframes pmMarkerRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* ── Platform Mockup Responsive ── */
/* On mobile, keep the EXACT desktop side-by-side layout but scale it down
   like a miniature browser preview (CAASie-style). Same image, just smaller. */
@media (max-width: 960px) {
    .platform-demo-section {
        padding: 40px 0 50px;
    }
    .platform-demo-section > .container {
        display: flex;
        justify-content: center;
        overflow: visible;
        padding: 0 12px;
    }
    .platform-mockup {
        /* Force exact desktop layout at all sizes */
        grid-template-columns: 380px 1fr;
        height: 580px;
        width: 1060px;
        min-width: 1060px;
        flex-shrink: 0;
        zoom: 0.88;
        transform: none;
        margin: 0 auto;
        border-radius: 24px;
        box-shadow: 0 12px 60px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
    }
}
@media (max-width: 768px) {
    .platform-demo-section {
        padding: 24px 0 32px;
        overflow: hidden !important;
    }
    .platform-demo-section > .container {
        overflow: hidden !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;
    }
    .platform-mockup {
        zoom: unset !important;
        transform: scale(0.36) !important;
        transform-origin: top center !important;
        margin: 0 auto !important;
        margin-bottom: -220px !important;
    }
}
@media (min-width: 430px) and (max-width: 768px) {
    .platform-mockup {
        transform: scale(0.42) !important;
        margin-bottom: -200px !important;
    }
}
@media (min-width: 600px) and (max-width: 768px) {
    .platform-mockup {
        transform: scale(0.55) !important;
        margin-bottom: -140px !important;
    }
}
}

/* ═══════════════════════════════════════════
   OPTIMISE ON THE FLY — CAASie-style section
   Apple-inspired • Pixelspot black/blue/white
   ═══════════════════════════════════════════ */
.otf-section {
    background: #000000 !important;
    padding: 100px 0 120px;
    overflow: hidden;
}
.otf-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
}

/* ── Visual (left) ── */
.otf-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 480px;
}

/* Old card (behind, bottom-left) */
.otf-card-old {
    position: absolute;
    bottom: -10px;
    left: -30px;
    width: 180px;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 16px;
    padding: 28px 20px 32px;
    text-align: center;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: otfOldSlide 0.8s 0.6s ease-out forwards;
}
.otf-card-old-icon {
    font-size: 28px;
    color: rgba(255,255,255,0.2) !important;
    margin-bottom: 12px;
}
.otf-card-old-text {
    color: rgba(255,255,255,0.3) !important;
    font-size: 18px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    letter-spacing: -0.02em;
}
.otf-card-old-text span {
    color: #2997ff !important;
    font-weight: 600;
}

/* Main card */
.otf-card-main {
    position: relative;
    width: 340px;
    margin-left: 80px;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.06) !important;
    border: 2px solid rgba(41, 151, 255, 0.25) !important;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(41, 151, 255, 0.08);
    opacity: 0;
    transform: translateY(30px);
    animation: otfMainPop 0.7s 0.3s ease-out forwards;
}
.otf-card-img {
    height: 130px;
    background: linear-gradient(135deg, #1a4a2e, #2d7a5a, #d4723c, #c44e28);
    position: relative;
    overflow: hidden;
}
.otf-card-img-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.otf-card-img-text {
    position: absolute;
    bottom: 14px;
    left: 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.otf-card-img-text span {
    color: #2997ff;
}
.otf-card-body {
    padding: 24px 22px 22px;
}
.otf-card-headline {
    color: #fff !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}
.otf-card-headline strong {
    font-weight: 700;
    color: #fff !important;
}
.otf-card-filename {
    color: #2997ff !important;
    font-size: 12px;
    font-weight: 500;
    font-family: 'SF Mono', 'Menlo', monospace;
    opacity: 0.7;
    margin: 0;
}

/* Arrow */
.otf-arrow {
    position: absolute;
    left: 100px;
    bottom: 170px;
    z-index: 3;
    opacity: 0;
    animation: otfArrowFade 0.5s 1s ease-out forwards;
}

/* ── Copy (right) ── */
.otf-copy {
    padding: 20px 0;
}
.otf-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300;
    letter-spacing: -0.04em;
    color: #fff !important;
    line-height: 1.1;
    margin: 0 0 14px;
}
.otf-title span {
    font-weight: 800;
    color: #fff !important;
}
.otf-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.5) !important;
    line-height: 1.6;
    margin: 0 0 40px;
}
.otf-subtitle span {
    color: #2997ff !important;
    font-weight: 600;
}
.otf-heading {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: -0.02em;
    line-height: 1.35;
    margin: 0 0 14px;
}
.otf-desc {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5) !important;
    line-height: 1.7;
    margin: 0 0 20px;
}
.otf-tagline {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45) !important;
    margin: 0;
}

/* ── OTF Animations ── */
@keyframes otfMainPop {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes otfOldSlide {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes otfArrowFade {
    to { opacity: 1; }
}

/* ── OTF Responsive ── */
@media (max-width: 900px) {
    .otf-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .otf-visual {
        min-height: 400px;
        justify-content: center;
    }
    .otf-copy {
        text-align: center;
    }
}
@media (max-width: 600px) {
    .otf-section {
        padding: 70px 0 80px;
    }
    .otf-card-main {
        width: 280px;
    }
    .otf-card-old {
        width: 140px;
    }
    .otf-visual {
        min-height: 360px;
    }
    .otf-title {
        font-size: 2rem;
    }
    .otf-arrow {
        display: none;
    }
}

/* ═══════ Responsive ═══════ */
@media (max-width: 768px) {
    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 380px;
        margin-inline: auto;
    }
    .hiw-card-visual {
        height: 280px;
        padding: 28px 20px;
    }
    .hiw-section {
        padding: 70px 0 80px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   APPLE-STYLE MOBILE — True mobile-first, single-column, readable
   NO zoom shrinking — proper reflow like apple.com
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* ── Section padding — tighter on mobile ── */
    .section,
    .dashboard-section,
    .live-dashboard,
    .payment-exchange-section,
    .team-access-section,
    .network-section {
        padding: 56px 0 !important;
    }

    /* ── Section headers — Apple mobile sizing ── */
    .section-title,
    .dashboard-section .section-title,
    .live-dashboard .section-title,
    .payment-exchange-section .section-title,
    .team-access-section .section-title,
    .network-section .section-title {
        font-size: 1.75rem !important;
        letter-spacing: -0.03em !important;
        line-height: 1.15 !important;
    }
    .section-subtitle {
        font-size: 0.92rem !important;
        line-height: 1.5 !important;
    }
    .section-header {
        margin-bottom: 32px !important;
    }

    /* ══════════════════════════════════════
       HOW IT WORKS — Full-width stacked cards
       ══════════════════════════════════════ */
    .hiw-section {
        padding: 56px 0 64px !important;
        overflow: visible !important;
    }
    .hiw-section .hiw-container {
        padding: 0 20px !important;
        max-width: 100% !important;
    }
    .hiw-header {
        margin-bottom: 36px !important;
    }
    .hiw-title {
        font-size: 2rem !important;
        letter-spacing: -0.03em !important;
    }
    .hiw-subtitle {
        font-size: 0.95rem !important;
    }
    .hiw-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 28px !important;
        width: 100% !important;
        min-width: 0 !important;
        zoom: 1 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    .hiw-card {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .hiw-card-visual {
        height: 280px !important;
        padding: 32px 24px !important;
        border-radius: 22px !important;
        width: 100% !important;
    }
    .hiw-card-step {
        font-size: 0.85rem !important;
        margin-top: 4px !important;
    }
    .hiw-card-step span {
        font-size: 1.05rem !important;
    }
    .hiw-card-desc {
        font-size: 0.9rem !important;
        line-height: 1.55 !important;
        max-width: 100% !important;
        color: #86868b !important;
    }
    .hiw-footer {
        margin-top: 32px !important;
    }
    .hiw-footer p {
        font-size: 1.05rem !important;
        margin-bottom: 18px !important;
    }
    .hiw-footer .btn {
        font-size: 1rem !important;
        padding: 16px 36px !important;
        width: 100% !important;
        max-width: 320px !important;
    }
    /* Map visual — bigger on mobile */
    .hiw-map-canvas {
        width: 100% !important;
        max-width: 260px !important;
        margin: 0 auto !important;
    }
    .hiw-map-svg {
        width: 100% !important;
        height: auto !important;
    }
    .hiw-search-bar {
        margin-bottom: 16px !important;
    }
    /* Schedule cards — space them out */
    .hiw-schedule-row {
        gap: 10px !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
    }
    .hiw-sched {
        padding: 14px 16px !important;
        min-width: 85px !important;
    }
    .hiw-sched-day {
        font-size: 0.85rem !important;
    }
    .hiw-sched-time {
        font-size: 0.75rem !important;
    }
    /* Upload zone */
    .hiw-upload-zone {
        padding: 28px !important;
    }
    .hiw-upload-icon {
        font-size: 2.2rem !important;
    }
    .hiw-upload-text {
        font-size: 1rem !important;
    }
    .hiw-upload-bold {
        font-size: 1.2rem !important;
    }

    /* ══════════════════════════════════════
       DASHBOARD — Horizontal scroll, not zoom
       ══════════════════════════════════════ */
    .dashboard-section {
        padding: 48px 0 !important;
        overflow: hidden !important;
    }
    .dashboard-section .container {
        padding: 0 20px !important;
        overflow: visible !important;
    }
    .dashboard-section .section-header {
        max-width: 100% !important;
    }
    .dashboard-mockup {
        width: 100% !important;
        min-width: 0 !important;
        zoom: 1 !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 18px !important;
        padding: 20px !important;
    }
    .dashboard-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    .dash-stat {
        padding: 16px !important;
        border-radius: 14px !important;
    }
    .dash-stat .value {
        font-size: 1.4rem !important;
    }
    .dashboard-bottom {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* ── Features — 1-col stacked cards ── */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    /* ── Audience Split — 1-col ── */
    .audience-split {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .audience-card {
        padding: 28px 22px !important;
        border-radius: 18px !important;
    }

    /* ── Screen Cards Scroll — bigger cards ── */
    .screen-scroll-wrapper {
        margin: 0 -16px 40px !important;
    }
    .screen-card {
        width: 280px !important;
    }
    .screen-card-img {
        height: 180px !important;
    }

    /* ══════════════════════════════════════
       PAYMENT / EXCHANGE — stacked
       ══════════════════════════════════════ */
    .payment-layout,
    .exchange-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .exchange-features,
    .payment-features {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .ef-card,
    .exchange-feature-card {
        padding: 24px 20px !important;
        border-radius: 18px !important;
    }

    /* ── Security / Team — 1-col ── */
    .security-grid,
    .team-access-section .security-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .team-mockup {
        padding: 16px !important;
        border-radius: 14px !important;
    }

    /* ══════════════════════════════════════
       NETWORK / TECH — Full-width stacked
       ══════════════════════════════════════ */
    .tech-mockup {
        width: 100% !important;
        min-width: 0 !important;
        zoom: 1 !important;
        margin: 0 !important;
    }
    .tech-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }
    .tech-card {
        padding: 28px 24px !important;
        border-radius: 18px !important;
        text-align: center !important;
    }
    .tech-card .tc-icon,
    .tech-card .icon {
        font-size: 1.8rem !important;
        margin-bottom: 12px !important;
    }
    .tech-card h4 {
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        margin-bottom: 8px !important;
    }
    .tech-card p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        color: #86868b !important;
    }
    .tech-heading {
        font-size: 1.35rem !important;
        margin: 40px 0 20px !important;
    }
    .screen-types {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }
    .screen-type {
        font-size: 0.78rem !important;
        padding: 6px 14px !important;
    }
    .network-section .container {
        padding: 0 20px !important;
    }
    .network-count {
        font-size: 1.6rem !important;
    }
    .network-stats-row {
        gap: 16px !important;
    }
    #dooh-map {
        height: 300px !important;
        border-radius: 14px !important;
        margin: 20px 0 16px !important;
    }

    /* ══════════════════════════════════════
       OTF SECTION — stacked, centered
       ══════════════════════════════════════ */
    .otf-section {
        padding: 56px 0 64px !important;
        background: #000000 !important;
        overflow: visible !important;
    }
    .otf-section .container {
        overflow: visible !important;
    }
    .otf-layout {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        max-width: 100% !important;
        padding: 0 20px !important;
    }
    .otf-visual {
        min-height: 300px !important;
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
        position: relative !important;
        overflow: visible !important;
    }
    .otf-copy {
        text-align: center !important;
        padding: 0 10px !important;
    }
    .otf-card-main {
        width: 220px !important;
        margin-left: 30px !important;
        margin-bottom: 0 !important;
    }
    .otf-card-old {
        width: 110px !important;
        left: 0px !important;
        bottom: 0px !important;
    }
    .otf-title {
        font-size: 1.75rem !important;
    }
    .otf-subtitle {
        font-size: 0.92rem !important;
    }
    .otf-heading {
        font-size: 1.1rem !important;
    }
    .otf-desc {
        font-size: 0.88rem !important;
    }
    .otf-arrow {
        display: none !important;
    }

    /* ══════════════════════════════════════
       CTA — full-width, stacked buttons
       ══════════════════════════════════════ */
    .cta-section {
        padding: 56px 0 64px !important;
    }
    .cta-apple-card {
        padding: 36px 20px !important;
        border-radius: 20px !important;
    }
    .cta-hero-title {
        font-size: 1.65rem !important;
        line-height: 1.12 !important;
        margin-bottom: 12px !important;
    }
    .cta-hero-sub {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    .cta-btn-row {
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 24px !important;
    }
    .cta-btn-primary,
    .cta-btn-outline {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 0.88rem !important;
        border-radius: 12px !important;
    }
    .cta-trust-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .cta-trust-item {
        font-size: 0.78rem !important;
    }
}

/* ── Extra small phones (≤420px) ── */
@media (max-width: 420px) {
    .section-title {
        font-size: 1.5rem !important;
    }
    .section-subtitle {
        font-size: 0.85rem !important;
    }
    .hiw-title {
        font-size: 1.75rem !important;
    }
    .hiw-card-visual {
        height: 240px !important;
        padding: 24px 18px !important;
    }
    .otf-card-main {
        width: 190px !important;
        margin-left: 20px !important;
    }
    .otf-card-old {
        width: 95px !important;
        left: -5px !important;
    }
    .otf-visual {
        min-height: 260px !important;
    }
    .otf-title {
        font-size: 1.5rem !important;
    }
    .cta-hero-title {
        font-size: 1.4rem !important;
    }
    .screen-card {
        width: 260px !important;
    }
    .screen-card-img {
        height: 160px !important;
    }
}

/* ── Hero Toggle Buttons ── */
.hero-toggle {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.hero-toggle.active {
    background: var(--gradient-1) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px var(--accent-glow) !important;
    border: none !important;
}
.hero-toggle:not(.active) {
    background: transparent !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border) !important;
    box-shadow: none !important;
}

/* ── Apple Hero Override ── */
.hero {
    background: #fff !important;
    min-height: 85vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 160px 0 100px !important;
}
.hero::before,
.hero::after {
    display: none !important;
}
.hero-bg,
.hero-gradient {
    display: none !important;
}
.hero-content {
    text-align: center !important;
    position: relative !important;
    z-index: 2 !important;
    max-width: 720px !important;
    padding: 0 24px !important;
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both !important;
}
@keyframes heroFadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
    display: inline-block !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #0071e3 !important;
    margin-bottom: 16px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}
.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4rem) !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    color: #1d1d1f !important;
    text-shadow: none !important;
    margin-bottom: 16px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
}
.hero-title .char {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    display: inline !important;
}
.hero-title .gradient-text,
.hero-title > .gradient-text,
h1.hero-title .gradient-text,
h1.hero-title > span.gradient-text {
    background: linear-gradient(90deg, #0071e3, #2997ff) !important;
    background-size: 100% 100% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}
.gradient-text .char,
.hero-title .gradient-text .char {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    display: inline !important;
    -webkit-text-fill-color: inherit !important;
    background: none !important;
}
.hero-subtitle {
    font-size: 1.125rem !important;
    color: #6e6e73 !important;
    max-width: 500px !important;
    margin: 0 auto 32px !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}
.hero-buttons {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}
.hero-buttons .btn-primary {
    background: #0071e3 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 980px !important;
    padding: 12px 28px !important;
    font-weight: 400 !important;
    font-size: 1rem !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    transition: background 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: none !important;
}
.hero-buttons .btn-primary:hover {
    background: #0077ED !important;
    transform: none !important;
    box-shadow: none !important;
}
.hero-buttons .btn-outline {
    background: transparent !important;
    color: #0071e3 !important;
    border: none !important;
    border-radius: 980px !important;
    padding: 12px 28px !important;
    font-weight: 400 !important;
    font-size: 1rem !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: none !important;
}
.hero-buttons .btn-outline:hover {
    background: transparent !important;
    color: #0077ED !important;
    text-decoration: underline !important;
}
.hero-scroll {
    display: none !important;
}
/* ═══════════════════════════════════════════════════════════════════
   APPLE MOBILE — COMPLETE OVERHAUL
   Pixel-perfect Apple.com mobile experience for marketplace
   ═══════════════════════════════════════════════════════════════════ */

/* ── HERO — Apple.com mobile hero ── */
@media (max-width: 768px) {
    .hero {
        min-height: auto !important;
        padding: 100px 0 56px !important;
        background: #fbfbfd !important;
    }
    .hero-content {
        padding: 0 20px !important;
        max-width: 100% !important;
    }
    .hero-eyebrow {
        font-size: 0.7rem !important;
        letter-spacing: 0.1em !important;
        margin-bottom: 12px !important;
    }
    .hero-title {
        font-size: 2.2rem !important;
        letter-spacing: -0.025em !important;
        line-height: 1.1 !important;
        margin-bottom: 14px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .hero-title .gradient-text {
        font-size: inherit !important;
        display: inline !important;
    }
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin: 0 auto 24px !important;
        max-width: 100% !important;
        padding: 0 !important;
        color: #6e6e73 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        text-overflow: unset !important;
        overflow: visible !important;
    }
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
        width: 100% !important;
    }
    .hero-buttons .btn-primary {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #0071e3 !important;
        color: #fff !important;
        border: none !important;
        border-radius: 980px !important;
        padding: 14px 32px !important;
        font-size: 1rem !important;
        font-weight: 400 !important;
        font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
        text-decoration: none !important;
        box-shadow: none !important;
        min-width: 200px !important;
        -webkit-appearance: none !important;
        -webkit-tap-highlight-color: transparent !important;
        cursor: pointer !important;
    }
    .hero-buttons .btn-outline {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        color: #0071e3 !important;
        border: none !important;
        border-radius: 980px !important;
        padding: 14px 32px !important;
        font-size: 1rem !important;
        font-weight: 400 !important;
        font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
        text-decoration: none !important;
        box-shadow: none !important;
        outline: none !important;
        min-width: 200px !important;
        -webkit-appearance: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    .hero-buttons .btn-primary:active {
        background: #005bb5 !important;
    }
    .hero-buttons .btn-outline:active {
        color: #005bb5 !important;
    }
}

/* ── HERO small phones ── */
@media (max-width: 430px) {
    .hero {
        padding: 90px 0 48px !important;
    }
    .hero-title {
        font-size: 1.85rem !important;
        letter-spacing: -0.02em !important;
    }
    .hero-subtitle {
        font-size: 0.88rem !important;
    }
}
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.65rem !important;
    }
}

/* ── ALL BUTTONS — Apple pill style on mobile ── */
@media (max-width: 768px) {
    .btn-primary,
    .btn.btn-primary,
    a.btn-primary,
    .hiw-footer .btn,
    .audience-card .btn-primary {
        background: #0071e3 !important;
        color: #fff !important;
        border: none !important;
        border-radius: 980px !important;
        padding: 14px 28px !important;
        font-size: 0.92rem !important;
        font-weight: 400 !important;
        font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
        text-decoration: none !important;
        box-shadow: none !important;
        outline: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        -webkit-appearance: none !important;
        -webkit-tap-highlight-color: transparent !important;
        transition: background 0.2s ease !important;
    }
    .btn-primary:active,
    .btn.btn-primary:active,
    a.btn-primary:active,
    .hiw-footer .btn:active {
        background: #005bb5 !important;
    }
    .btn-outline,
    .btn.btn-outline,
    a.btn-outline {
        background: transparent !important;
        color: #0071e3 !important;
        border: none !important;
        border-radius: 980px !important;
        padding: 14px 28px !important;
        font-size: 0.92rem !important;
        font-weight: 400 !important;
        font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif !important;
        text-decoration: none !important;
        box-shadow: none !important;
        outline: none !important;
        -webkit-appearance: none !important;
    }

    /* ── Platform demo — ensure readable ── */
    .platform-demo-section {
        padding: 20px 0 32px !important;
        background: #fff !important;
    }

    /* ── How It Works section — Apple clean, full-width stacked ── */
    .hiw-section {
        padding: 56px 0 64px !important;
        background: #000 !important;
    }
    .hiw-title {
        font-size: 2rem !important;
        letter-spacing: -0.03em !important;
        color: #f5f5f7 !important;
    }
    .hiw-subtitle {
        font-size: 0.95rem !important;
        color: #86868b !important;
    }
    .hiw-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 28px !important;
        width: 100% !important;
        min-width: 0 !important;
        zoom: 1 !important;
        max-width: 100% !important;
    }
    .hiw-card {
        width: 100% !important;
        max-width: 100% !important;
    }
    .hiw-card-visual {
        height: 280px !important;
        border-radius: 22px !important;
        width: 100% !important;
    }
    .hiw-card-step {
        font-size: 0.88rem !important;
    }
    .hiw-card-step span {
        font-size: 1.05rem !important;
    }
    .hiw-card-desc {
        font-size: 0.9rem !important;
        line-height: 1.55 !important;
        color: #86868b !important;
        max-width: 100% !important;
    }
    .hiw-footer {
        text-align: center !important;
        margin-top: 32px !important;
    }
    .hiw-footer p {
        font-size: 1.05rem !important;
        color: #86868b !important;
        margin-bottom: 18px !important;
    }
    .hiw-footer .btn {
        font-size: 1rem !important;
        padding: 16px 36px !important;
        width: 100% !important;
        max-width: 320px !important;
    }

    /* ── Tech Grid — stacked, not zoomed ── */
    .tech-mockup {
        width: 100% !important;
        min-width: 0 !important;
        zoom: 1 !important;
    }
    .tech-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }
    .tech-card {
        padding: 28px 24px !important;
        border-radius: 18px !important;
    }
    .tech-card h4 {
        font-size: 1.05rem !important;
    }
    .tech-card p {
        font-size: 0.9rem !important;
    }

    /* ── OTF Section — clean stacked mobile ── */
    .otf-section {
        padding: 56px 0 !important;
    }
    .otf-title {
        font-size: 1.65rem !important;
        letter-spacing: -0.03em !important;
    }
    .otf-subtitle {
        font-size: 0.88rem !important;
    }
    .otf-heading {
        font-size: 1rem !important;
    }
    .otf-desc,
    .otf-tagline {
        font-size: 0.85rem !important;
    }

    /* ── Screen Types section ── */
    .screen-card {
        border-radius: 18px !important;
    }
    .screen-card-body {
        padding: 16px !important;
    }
    .screen-card-body h3 {
        font-size: 0.92rem !important;
    }
    .screen-card-body p {
        font-size: 0.78rem !important;
    }

    /* ── Audience cards — full width ── */
    .audience-split {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 0 20px !important;
    }
    .audience-card {
        padding: 28px 24px !important;
        border-radius: 18px !important;
    }
    .audience-card h3 {
        font-size: 1.25rem !important;
    }
    .audience-card > p {
        font-size: 0.85rem !important;
    }

    /* ── Live Dashboard — Apple section ── */
    .live-dashboard {
        padding: 56px 0 !important;
        background: #fbfbfd !important;
    }
    .live-dashboard .section-title {
        font-size: 1.65rem !important;
    }
    .live-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 0 20px !important;
    }
    .live-stat {
        padding: 20px 16px !important;
        border-radius: 16px !important;
    }
    .live-features {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 0 20px !important;
    }

    /* ── Payment / Exchange — clean mobile ── */
    .payment-exchange-section {
        padding: 56px 0 !important;
        background: #fff !important;
    }
    .payment-exchange-section .section-title {
        font-size: 1.65rem !important;
    }
    .payment-portal {
        margin: 0 20px !important;
        border-radius: 18px !important;
        overflow: hidden !important;
    }
    .exchange-features {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 0 20px !important;
    }
    .exchange-feature-card {
        padding: 22px 20px !important;
        border-radius: 16px !important;
    }
    .exchange-feature-card h4 {
        font-size: 0.92rem !important;
    }
    .exchange-feature-card p {
        font-size: 0.8rem !important;
    }

    /* ── Team Access — clean stacked ── */
    .team-access-section {
        padding: 56px 0 !important;
        background: #fbfbfd !important;
    }
    .team-access-section .section-title {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }
    .security-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 0 20px !important;
    }
    .security-card {
        padding: 22px 20px !important;
        border-radius: 16px !important;
    }
    .security-card h4 {
        font-size: 0.92rem !important;
    }
    .security-card p {
        font-size: 0.8rem !important;
    }

    /* ── Network section ── */
    .network-section {
        padding: 56px 0 !important;
        background: #fff !important;
    }
    .network-section .section-title {
        font-size: 1.65rem !important;
    }
    .network-map {
        border-radius: 18px !important;
        margin: 0 20px !important;
        overflow: hidden !important;
    }

    /* ── CTA Section — Apple green card ── */
    .cta-section {
        padding: 48px 0 56px !important;
        background: #fbfbfd !important;
    }
    .cta-apple-card {
        margin: 0 20px !important;
        padding: 40px 24px !important;
        border-radius: 22px !important;
    }
    .cta-hero-title {
        font-size: 1.5rem !important;
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
    }
    .cta-hero-sub {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    .cta-btn-row {
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    .cta-btn-primary,
    .cta-btn-outline {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 24px !important;
        font-size: 0.88rem !important;
        border-radius: 14px !important;
        text-align: center !important;
    }
    .cta-or {
        font-size: 0.78rem !important;
    }
    .cta-trust-row {
        flex-direction: column !important;
        gap: 8px !important;
        align-items: center !important;
    }
    .cta-trust-item {
        font-size: 0.75rem !important;
    }

    /* ── Section tags — Apple pill badges ── */
    .section-tag {
        font-size: 0.65rem !important;
        letter-spacing: 0.12em !important;
        padding: 5px 14px !important;
        border-radius: 980px !important;
    }

    /* ── Section headers — Apple typography ── */
    .section-title {
        font-size: 1.65rem !important;
        font-weight: 700 !important;
        letter-spacing: -0.03em !important;
        line-height: 1.15 !important;
        font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif !important;
        color: #1d1d1f !important;
    }
    .section-subtitle {
        font-size: 0.88rem !important;
        color: #86868b !important;
        line-height: 1.5 !important;
        font-weight: 400 !important;
    }

    /* ── Global container padding ── */
    .section > .container,
    .dashboard-section > .container,
    .live-dashboard > .container,
    .network-section > .container {
        padding: 0 20px !important;
    }
}

/* ── Extra-small phones (iPhone SE, etc.) ── */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.55rem !important;
    }
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
    .cta-hero-title {
        font-size: 1.3rem !important;
    }
    .audience-card {
        padding: 24px 18px !important;
    }
    .audience-card h3 {
        font-size: 1.1rem !important;
    }
}
