/* ===== RESET & BASE ===== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #f9fafb;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #eff6ff;
    --accent: #2563eb;
    --accent-2: #1d4ed8;
    --accent-glow: rgba(249, 115, 22, 0.18);
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --border-light: #d1d5db;
    --green: #16a34a;
    --red: #dc2626;
    --gold: #d97706;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition: 0.25s ease;
    --font: 'Inter', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

/* ===== TYPOGRAPHY ===== */

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: 1.2rem;
}

p {
    color: var(--text-secondary);
}

.gradient-text {
    color: var(--accent);
}

.text-green {
    color: var(--green);
}

.text-red {
    color: var(--red);
}

/* ===== BUTTONS ===== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--accent-glow);
}

.btn-ghost {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.08);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

.btn-lg {
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 10px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===== SECTIONS ===== */

.section {
    padding: 100px 0;
}

.section-dark {
    background: #eff6ff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    margin-top: 12px;
    font-size: 1.05rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* ===== NAVBAR ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 6px 0;
    transition: background 0.3s, box-shadow 0.3s;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    border-bottom-color: transparent;
}

.navbar .logo {
    color: #111827;
}

.navbar .logo span {
    color: var(--accent);
}

.navbar .nav-links a {
    color: #374151;
}

.navbar .nav-links a:hover {
    color: var(--accent);
}

.navbar .hamburger span {
    background: #374151;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--accent);
}

.logo-icon {
    color: var(--accent);
    font-size: 1.2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.mob-only {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== TICKER BAR ===== */

.ticker-bar {
    background: #111827;
    color: rgba(255, 255, 255, 0.7);
    padding: 9px 0;
    overflow: hidden;
    position: relative;
    z-index: 998;
    margin-top: 92px;
}

.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

.ticker-bar:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tick-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

.tick-name {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.tick-val {
    color: rgba(255, 255, 255, 0.7);
}

.tick-change {
    font-weight: 700;
    font-size: 0.75rem;
}

.tick-change.up {
    color: #4ade80;
}

.tick-change.down {
    color: #f87171;
}

/* ===== HERO ===== */

.hero {
    min-height: calc(100vh - 53px - 36px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 80px;
    background: linear-gradient(rgba(5, 10, 25, 0.92), rgba(5, 10, 25, 0.92)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: none;
    top: -200px;
    right: -150px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: none;
    bottom: -100px;
    left: -80px;
}

.orb-3 {
    display: none;
}

@keyframes heroOrb1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-20px, 20px) scale(1.05);
    }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Hero split layout */

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 540px;
}

.hero-visual {
    flex: 0 0 400px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.35);
    color: #3b82f6;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero .btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.hero .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Trust badges */

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
}

.trust-item i {
    color: var(--accent);
}

/* Portfolio Card (hero visual) */

.portfolio-card {
    background: #fff;
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.pc-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.pc-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
}

.pc-balance {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.pc-change {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 22px;
}

.pc-change.up {
    color: var(--green);
}

.pc-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.pc-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
}

.pc-bar-row>span:first-child {
    width: 62px;
    color: var(--text-secondary);
    font-weight: 500;
    flex-shrink: 0;
}

.pc-bar-row>span:last-child {
    width: 32px;
    text-align: right;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.72rem;
}

.pc-bar {
    flex: 1;
    height: 7px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.pc-bar-fill {
    height: 100%;
    border-radius: 4px;
}

.pc-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.pc-stat {
    text-align: center;
}

.pc-stat-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pc-stat-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Floating badges */

.floating-badge {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.fb-1 {
    top: -18px;
    left: -36px;
    animation: floatBadge 3s ease-in-out infinite alternate;
}

.fb-2 {
    bottom: 36px;
    right: -28px;
    animation: floatBadge 3.5s ease-in-out infinite alternate-reverse;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Hero metric bar (legacy, kept for compatibility) */

.hero-metrics {
    display: none;
}

.metric-item,
.metric-icon,
.metric-val,
.metric-label,
.metric-sep {
    display: none;
}

/* ===== STATS BAR ===== */

.stats-bar {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.stats-bar-inner {
    display: flex;
    align-items: stretch;
}

.sbar-item {
    flex: 1;
    text-align: center;
    padding: 26px 16px;
}

.sbar-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.sbar-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.sbar-div {
    width: 1px;
    background: var(--border);
    align-self: stretch;
    margin: 16px 0;
}

/* ===== SECTION GRAY ===== */

.section-gray {
    background: #f8fafc;
}

/* ===== FEATURE ICON VARIANTS ===== */

.feature-icon.feat-blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.feature-icon.feat-indigo {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.feature-icon.feat-green {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.feature-icon.feat-pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.feature-icon.feat-gold {
    background: rgba(217, 119, 6, 0.1);
    color: #d97706;
}

/* ===== PLAN PERFORMANCE CARDS ===== */

.plans-perf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.perf-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.perf-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.perf-featured {
    border-color: var(--accent);
    box-shadow: 0 8px 32px var(--accent-glow);
    transform: translateY(-8px);
}

.perf-featured:hover {
    transform: translateY(-14px);
}

.perf-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.perf-icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin: 0 auto 16px;
}

.perf-icon.perf-icon-blue {
    background: rgba(37, 99, 235, 0.12);
    color: var(--accent);
}

.perf-icon.perf-icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.perf-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.perf-roi {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.perf-roi span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.perf-chart {
    margin: 16px 0;
}

.perf-details {
    margin-bottom: 20px;
}

.perf-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.88rem;
}

.perf-row:last-child {
    border-bottom: none;
}

.perf-row span {
    color: var(--text-secondary);
}

.perf-row strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* ===== EXTRA BUTTONS ===== */

.btn-outline-primary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-outline-primary:hover {
    background: var(--accent);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--accent);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER EXTRAS ===== */

.footer-logo {
    color: #fff !important;
}

.footer-logo span {
    color: var(--accent) !important;
}

.footer-payments {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-payments span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-payments span i {
    font-size: 1rem;
}

/* ===== MOB NAV BUTTONS ===== */

.mob-nav-btn {
    display: block;
    text-align: center;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-ghost-mob {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-ghost-mob:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-primary-mob {
    background: var(--accent);
    color: #fff;
}

.btn-primary-mob:hover {
    opacity: 0.9;
}

/* ===== PLANS STRIP ===== */

.plans-strip {
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    padding: 0;
}

.plans-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.plan-strip-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    gap: 8px;
    border-right: 1px solid #f1f5f9;
    position: relative;
    transition: background 0.2s;
}

.plan-strip-card:last-child {
    border-right: none;
}

.plan-strip-card:hover {
    background: #fafafa;
}

.plan-strip-featured {
    background: #eff6ff;
    border-top: 3px solid #2563eb;
}

.plan-strip-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-strip-name {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 7px;
}

.plan-strip-roi {
    font-size: 2rem;
    font-weight: 900;
    color: #111827;
    line-height: 1;
}

.plan-strip-roi span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
}

.plan-strip-min {
    font-size: 0.78rem;
    color: #9ca3af;
}

.btn-sm {
    padding: 7px 18px;
    font-size: 0.82rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #374151;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline:hover {
    border-color: #2563eb;
    color: #2563eb;
}

/* ===== FEATURES ===== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ===== ROI CALCULATOR ===== */

.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-prefix {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--transition);
    box-shadow: var(--shadow);
}

.input-with-prefix:focus-within {
    border-color: var(--accent);
}

.input-with-prefix span {
    padding: 12px 14px;
    color: var(--text-muted);
    font-weight: 600;
    border-right: 1px solid var(--border);
    background: var(--bg-primary);
}

.input-with-prefix input {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 14px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font);
}

.input-with-prefix input:focus {
    outline: none;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    accent-color: var(--accent);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-glow);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.range-labels span:nth-child(2) {
    color: var(--accent);
    font-weight: 700;
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 0.95rem;
}

.result-row span {
    color: var(--text-secondary);
}

.result-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.result-total {
    font-size: 1.1rem;
}

.result-total strong {
    font-size: 1.4rem;
    color: var(--accent);
}

.result-chart {
    margin: 20px 0;
}

/* ===== HOW IT WORKS ===== */

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    padding: 24px 16px;
}

.step-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(249, 115, 22, 0.08);
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step:hover .step-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

.step h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step p {
    font-size: 0.88rem;
    line-height: 1.6;
}

.step-connector {
    flex: 0 0 40px;
    height: 2px;
    background: var(--accent);
    opacity: 0.3;
    align-self: flex-start;
    margin-top: 52px;
}

@media (max-width: 768px) {
    .step-connector {
        display: none;
    }
}

/* ===== TESTIMONIALS ===== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.testimonial-featured {
    border-color: var(--accent);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== FAQ ===== */

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font);
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ===== CTA BANNER ===== */

.cta-banner {
    background: #2563eb;
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    margin-bottom: 14px;
    color: #fff;
}

.cta-banner p {
    margin-bottom: 32px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-banner .btn-primary {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */

.footer {
    background: #111827;
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 0.88rem;
    margin: 14px 0 20px;
    max-width: 260px;
    color: rgba(255, 255, 255, 0.5);
}

.footer .logo {
    color: #fff;
}

.footer .logo span {
    color: var(--accent);
}

.footer .logo-icon {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.footer-links h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-newsletter h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.footer-newsletter p {
    font-size: 0.85rem;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 0.88rem;
    font-family: var(--font);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

.disclaimer {
    max-width: 640px;
}

.disclaimer i {
    color: var(--gold);
    margin-right: 4px;
}

/* ===== MODAL ===== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.modal h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.modal-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

#modalCoinPrice {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-result {
    background: rgba(249, 115, 22, 0.06);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.modal-result strong {
    color: var(--accent);
}

/* ===== TABLE ===== */

.market-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.market-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.market-table thead th {
    background: var(--bg-primary);
    padding: 14px 16px;
    text-align: left;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.market-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.market-table tbody tr:last-child {
    border-bottom: none;
}

.market-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.market-table td {
    padding: 14px 16px;
    vertical-align: middle;
    white-space: nowrap;
}

.coin-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coin-cell img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.coin-name {
    font-weight: 600;
    color: var(--text-primary);
}

.coin-symbol {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.change-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.82rem;
}

.change-badge.positive {
    background: rgba(22, 163, 74, 0.1);
    color: var(--green);
}

.change-badge.negative {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
}

.loading-row {
    text-align: center;
    padding: 48px;
    color: var(--text-muted);
}

.spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.data-note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: right;
}

.btn-trade {
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-trade:hover {
    background: var(--accent);
    color: #fff;
}

/* ===== TOAST ===== */

.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 320px;
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 1.1rem;
}

.toast p {
    font-size: 0.88rem;
    color: var(--text-primary);
}

.toast.success .toast-icon {
    color: var(--green);
}

.toast.error .toast-icon {
    color: var(--red);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-newsletter {
        grid-column: 1 / -1;
    }
    .calc-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .section {
        padding: 64px 0;
    }
    .section-header {
        margin-bottom: 40px;
    }
    /* Navbar */
    .nav-links,
    .nav-actions {
        display: none;
    }
    .mob-only {
        display: list-item !important;
    }
    .hamburger {
        display: flex;
        touch-action: manipulation;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 53px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 12px 16px 20px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    .nav-links.open li {
        width: 100%;
    }
    .nav-links.open a {
        display: block;
        padding: 11px 16px;
        border-radius: 10px;
        font-size: 0.95rem;
        color: var(--text-secondary);
    }
    .nav-links.open a:hover {
        background: rgba(249, 115, 22, 0.06);
        color: var(--accent);
    }
    /* Hero */
    .hero {
        padding: 60px 0 60px;
        min-height: auto;
    }
    .hero-inner {
        flex-direction: column;
        gap: 48px;
    }
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    .hero-visual {
        flex: none;
        width: 100%;
        max-width: 420px;
    }
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
    }
    .fb-1,
    .fb-2 {
        display: none;
    }
    /* Stats bar */
    .stats-bar-inner {
        flex-wrap: wrap;
    }
    .sbar-item {
        flex: 0 0 50%;
    }
    .sbar-div {
        display: none;
    }
    /* Plans grid */
    .plans-perf-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .perf-featured {
        transform: none;
    }
    .perf-featured:hover {
        transform: translateY(-6px);
    }
    /* Plans strip */
    .plans-strip-grid {
        grid-template-columns: 1fr;
    }
    .plan-strip-card {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    /* Steps */
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input {
        width: 100%;
    }
    .newsletter-form .btn {
        width: 100%;
        justify-content: center;
    }
    /* Modal */
    .modal {
        padding: 24px 20px;
        margin: 0 12px;
    }
    .modal-overlay {
        align-items: flex-end;
        padding-bottom: 0;
    }
    .modal-overlay .modal {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    /* Toast */
    .toast {
        right: 12px;
        left: 12px;
        max-width: 100%;
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 88px 0 48px;
    }
    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-cta .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .hero-stats {
        gap: 12px;
    }
    .stat-value {
        font-size: 1.3rem;
    }
    .feature-card {
        padding: 22px 18px;
    }
    .result-card {
        padding: 20px 16px;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
    .section-header p {
        font-size: 0.92rem;
    }
    .cta-banner {
        padding: 56px 0;
    }
    .cta-banner h2 {
        font-size: 1.6rem;
    }
    .cta-banner .btn {
        width: 100%;
        justify-content: center;
    }
    .footer {
        padding: 48px 0 0;
    }
    .faq-question {
        font-size: 0.92rem;
    }
    .testimonial-card {
        padding: 22px 18px;
    }
}

/* ===== MARKETS SECTION ===== */

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

.market-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.market-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.market-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
}

.market-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.market-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.market-return {
    display: inline-block;
    background: rgba(22, 163, 74, 0.1);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ===== ABOUT / PLATFORM SECTION ===== */

.about-section {
    background: #fff;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 72px;
}

.about-img {
    flex: 0 0 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
    position: relative;
}

.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 1;
}

.about-content .section-tag {
    margin-bottom: 16px;
    display: block;
}

.about-content h2 {
    margin-bottom: 18px;
}

.about-content>p {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.93rem;
    color: var(--text-secondary);
}

.about-list li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.about-list li strong {
    color: var(--text-primary);
}

/* ===== TRUST BADGES SECTION ===== */

.trust-section {
    background: #0a0f1e;
    padding: 60px 0;
}

.trust-section .section-tag {
    background: rgba(249, 115, 22, 0.15);
}

.trust-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.trust-section>.container>p {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 44px;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-badge-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}

.trust-badge-card:hover {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.3);
}

.trust-badge-icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin: 0 auto 16px;
}

.trust-badge-card h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 6px;
}

.trust-badge-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ===== RESPONSIVE: NEW SECTIONS ===== */

@media (max-width: 1024px) {
    .markets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-inner {
        gap: 48px;
    }
    .about-img {
        flex: 0 0 380px;
    }
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .about-inner {
        flex-direction: column;
    }
    .about-img {
        flex: none;
        width: 100%;
    }
    .about-img img {
        height: 260px;
    }
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .market-card {
        padding: 20px 14px;
    }
    .trust-badges-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* ===== HERO SLIDER ===== */

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
    animation: slideIn 0.55s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider-nav {
    display: flex;
    gap: 8px;
    margin-top: 28px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.slider-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--accent);
}

/* ===== PLATFORM MOCKUP ===== */

.platform-mockup {
    background: #1a2035;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.pm-topbar {
    background: #111827;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pm-mac-dots {
    display: flex;
    gap: 6px;
}

.pm-mac-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.pm-mac-dots span:nth-child(1) {
    background: #ef4444;
}

.pm-mac-dots span:nth-child(2) {
    background: #2563eb;
}

.pm-mac-dots span:nth-child(3) {
    background: #22c55e;
}

.pm-title {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.pm-body {
    padding: 20px;
}

.pm-balance-section {
    margin-bottom: 16px;
}

.pm-balance-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.pm-balance-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.pm-balance-chg {
    font-size: 0.82rem;
    font-weight: 600;
    color: #4ade80;
}

.pm-chart-area {
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 10px 8px 4px;
}

.pm-assets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.pm-asset-row {
    display: flex;
    align-items: center;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    gap: 8px;
}

.pm-asset-name {
    flex: 1;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.pm-asset-val {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.pm-asset-chg {
    font-size: 0.78rem;
    font-weight: 700;
    min-width: 42px;
    text-align: right;
}

.pm-asset-chg.up {
    color: #4ade80;
}

.pm-asset-chg.down {
    color: #f87171;
}

.pm-footer {
    display: flex;
    gap: 8px;
}

.pm-stat-pill {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 9px 10px;
    text-align: center;
}

.pm-stat-pill span {
    display: block;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 3px;
}

.pm-stat-pill strong {
    font-size: 0.85rem;
}

/* ===== TRADINGVIEW CHART ===== */

.tv-chart-section {
    background: #f8fafc;
}

.tv-chart-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .tv-chart-wrapper .tradingview-widget-container {
        height: 360px !important;
    }
    .tv-chart-wrapper #tv_main_chart {
        height: 360px !important;
    }
}