/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --iv-bg: #000000;
    --iv-bg-alt: #0a0a0a;
    --iv-bg-card: #111111;
    --iv-bg-card-hover: #1a1a1a;
    --iv-gold: #d4af37;
    --iv-gold-light: #e8c547;
    --iv-green: #00c853;
    --iv-green-light: #33ff77;
    --iv-green-dark: #009624;
    --iv-text: #e0e0e0;
    --iv-text-muted: #888888;
    --iv-border: #222222;
    --iv-red: #ef4444;
    --iv-white: #ffffff;
    --iv-radius: 8px;
    --iv-shadow: 0 4px 24px rgba(0,0,0,0.6);
    --iv-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --iv-font-display: 'Playfair Display', Georgia, serif;
}

html {
    background: #000 !important;
}

body {
    font-family: var(--iv-font);
    background: #000 !important;
    color: var(--iv-text) !important;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

a { color: var(--iv-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--iv-gold-light); }

img { max-width: 100%; height: auto; }

.iv-main {
    background: #000;
    color: var(--iv-text);
    min-height: 60vh;
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--iv-white);
}

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

/* ===== Top Bar ===== */
.iv-topbar {
    background: #000;
    border-bottom: 1px solid #1a1a1a;
    padding: 6px 0;
    font-size: 13px;
    color: var(--iv-text-muted);
}

.iv-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.iv-topbar-contact a {
    color: var(--iv-green);
    margin-left: 16px;
    font-weight: 500;
}

/* ===== Header ===== */
.iv-header {
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--iv-gold);
}

.iv-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.iv-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
}

.iv-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    flex-shrink: 0;
    text-transform: uppercase;
}
.iv-logo-text { color: var(--iv-white); }
.iv-logo-accent { color: var(--iv-green); }

.iv-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.iv-nav {
    border-top: 1px solid var(--iv-border);
    padding: 6px 0;
}

.iv-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    align-items: center;
    justify-content: center;
}

.iv-nav ul li a {
    color: #ccc;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.2s;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.iv-nav ul li a:hover,
.iv-nav ul li.current-menu-item a {
    color: var(--iv-green);
    background: rgba(0,200,83,0.08);
}

.iv-nav .iv-login-btn a {
    background: var(--iv-green);
    color: #000;
    font-weight: 700;
    padding: 8px 20px;
}
.iv-nav .iv-login-btn a:hover {
    background: var(--iv-green-light);
    color: #000;
}

/* Dropdown */
.iv-nav li.menu-item-has-children,
.iv-nav li.iv-picks-menu {
    position: relative;
}

.iv-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    border: 1px solid #333;
    border-radius: var(--iv-radius);
    min-width: 200px;
    padding: 8px;
    flex-direction: column;
    box-shadow: var(--iv-shadow);
    z-index: 100;
}

.iv-nav li.menu-item-has-children:hover .sub-menu,
.iv-nav li.iv-picks-menu:hover .sub-menu {
    display: flex;
}

.iv-nav .sub-menu li a {
    padding: 10px 14px;
    display: block;
    border-radius: 4px;
    text-transform: none;
}

.iv-member-badge {
    background: rgba(0,200,83,0.12);
    border: 1px solid rgba(0,200,83,0.3);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--iv-green);
    flex-shrink: 0;
    white-space: nowrap;
}

.iv-badge-icon { margin-right: 4px; }

/* Mobile toggle */
.iv-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.iv-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--iv-text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== Hero / Banner ===== */
.iv-hero {
    background: #000;
    text-align: center;
    border-bottom: 1px solid var(--iv-border);
}

.iv-hero-banner {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 24px 0;
}

.iv-hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.iv-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 24px 48px;
}

.iv-hero-subtitle {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 28px;
    line-height: 1.6;
}

.iv-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.iv-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.iv-btn-gold {
    background: var(--iv-gold);
    color: #000;
}
.iv-btn-gold:hover {
    background: var(--iv-gold-light);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.3);
}

.iv-btn-green {
    background: var(--iv-green);
    color: #000;
}
.iv-btn-green:hover {
    background: var(--iv-green-light);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,200,83,0.3);
}

.iv-btn-outline {
    background: transparent;
    color: var(--iv-text);
    border: 2px solid #444;
}
.iv-btn-outline:hover {
    border-color: var(--iv-green);
    color: var(--iv-green);
}

/* ===== Info Bar / Stats ===== */
.iv-stats {
    padding: 48px 0;
    background: var(--iv-bg-alt);
    border-top: 1px solid var(--iv-border);
    border-bottom: 1px solid var(--iv-border);
}

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

.iv-stat-card {
    text-align: center;
    padding: 20px;
}

.iv-stat-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: var(--iv-green);
    font-family: var(--iv-font-display);
}

.iv-stat-label {
    display: block;
    font-size: 12px;
    color: var(--iv-text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ===== Section titles ===== */
.iv-section-title {
    font-family: var(--iv-font-display);
    font-size: 32px;
    color: var(--iv-white);
    margin-bottom: 8px;
}

.iv-section-subtitle {
    color: var(--iv-text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

.iv-section-divider {
    width: 60px;
    height: 3px;
    background: var(--iv-gold);
    margin-bottom: 40px;
}

.iv-text-center { text-align: center; }
.iv-text-center .iv-section-divider { margin-left: auto; margin-right: auto; }

/* ===== Info Cards / Feature Boxes ===== */
.iv-features {
    padding: 80px 0;
    background: var(--iv-bg);
}

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

.iv-feature-card {
    background: var(--iv-bg-card);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s;
}

.iv-feature-card:hover {
    background: var(--iv-bg-card-hover);
    border-color: var(--iv-green);
    transform: translateY(-2px);
}

.iv-feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.iv-feature-card h3 {
    font-size: 18px;
    color: var(--iv-gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.iv-feature-card p {
    color: var(--iv-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Analysts ===== */
.iv-analysts {
    padding: 80px 0;
    background: var(--iv-bg-alt);
}

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

.iv-analyst-card {
    background: var(--iv-bg-card);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s;
}

.iv-analyst-card:hover {
    background: var(--iv-bg-card-hover);
    border-color: var(--iv-gold);
    transform: translateY(-2px);
}

.iv-analyst-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--iv-gold), #b8941e);
    color: #000;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid var(--iv-gold);
}

.iv-analyst-card h3 {
    font-size: 18px;
    color: var(--iv-white);
    margin-bottom: 4px;
}

.iv-analyst-role {
    color: var(--iv-green);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.iv-analyst-bio {
    color: var(--iv-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Radio Show Section ===== */
.iv-radio {
    padding: 80px 0;
    background: var(--iv-bg);
    border-top: 1px solid var(--iv-border);
}

.iv-radio-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.iv-radio-badge {
    display: inline-block;
    background: rgba(0,200,83,0.12);
    border: 1px solid rgba(0,200,83,0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--iv-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.iv-radio-title {
    font-family: var(--iv-font-display);
    font-size: 36px;
    color: var(--iv-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.iv-radio-text {
    color: var(--iv-text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.iv-radio-schedule {
    list-style: none;
    margin-bottom: 24px;
}

.iv-radio-schedule li {
    color: var(--iv-text);
    padding: 8px 0;
    border-bottom: 1px solid var(--iv-border);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.iv-radio-schedule li .iv-schedule-dot {
    width: 8px;
    height: 8px;
    background: var(--iv-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.iv-radio-visual {
    background: var(--iv-bg-card);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.iv-radio-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--iv-green), var(--iv-gold), var(--iv-green));
}

.iv-radio-mic {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
}

.iv-radio-visual h3 {
    font-size: 20px;
    color: var(--iv-gold);
    margin-bottom: 8px;
}

.iv-radio-visual p {
    color: var(--iv-text-muted);
    font-size: 14px;
}

.iv-radio-eq {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    margin-top: 20px;
}

.iv-radio-eq span {
    width: 4px;
    background: var(--iv-green);
    border-radius: 2px;
    animation: iv-eq 1.2s ease-in-out infinite;
}

.iv-radio-eq span:nth-child(1) { height: 15px; animation-delay: 0s; }
.iv-radio-eq span:nth-child(2) { height: 25px; animation-delay: 0.15s; }
.iv-radio-eq span:nth-child(3) { height: 35px; animation-delay: 0.3s; }
.iv-radio-eq span:nth-child(4) { height: 20px; animation-delay: 0.45s; }
.iv-radio-eq span:nth-child(5) { height: 30px; animation-delay: 0.6s; }
.iv-radio-eq span:nth-child(6) { height: 18px; animation-delay: 0.75s; }
.iv-radio-eq span:nth-child(7) { height: 28px; animation-delay: 0.9s; }

@keyframes iv-eq {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

.iv-audio-player {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.iv-audio-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--iv-green);
    background: rgba(0, 200, 83, 0.1);
    color: var(--iv-green);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.iv-audio-btn:hover {
    background: rgba(0, 200, 83, 0.25);
    transform: scale(1.08);
}

.iv-audio-btn.playing {
    border-color: var(--iv-gold);
    color: var(--iv-gold);
    background: rgba(212, 175, 55, 0.15);
    animation: iv-pulse 2s ease-in-out infinite;
}

.iv-audio-icon-pause {
    font-size: 16px;
    letter-spacing: 2px;
}

.iv-audio-label {
    color: var(--iv-text-muted);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes iv-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}

/* ===== CTA ===== */
.iv-cta {
    padding: 80px 0;
    background: var(--iv-bg-alt);
}

.iv-cta-card {
    background: linear-gradient(135deg, #0a1a0a, #111);
    border: 1px solid var(--iv-border);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.iv-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--iv-green), var(--iv-gold));
}

.iv-cta-card h2 {
    font-family: var(--iv-font-display);
    font-size: 36px;
    color: var(--iv-white);
    margin-bottom: 12px;
}

.iv-cta-card p {
    color: var(--iv-text-muted);
    font-size: 18px;
    margin-bottom: 28px;
}

.iv-cta-phone {
    color: var(--iv-text-muted) !important;
    font-size: 14px !important;
    margin-top: 20px !important;
}

.iv-cta-phone strong {
    color: var(--iv-gold);
}

/* ===== Pages ===== */
.iv-page {
    padding: 48px 0 80px;
}

.iv-page-title {
    font-family: var(--iv-font-display);
    font-size: 38px;
    color: var(--iv-white);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--iv-gold);
}

.iv-page-content {
    max-width: 800px;
}

.iv-page-content h2 {
    font-size: 24px;
    color: var(--iv-white);
    margin: 32px 0 12px;
}

.iv-page-content h3 {
    font-size: 20px;
    color: var(--iv-green);
    margin: 24px 0 8px;
}

.iv-page-content p {
    margin-bottom: 12px;
    color: var(--iv-text);
}

.iv-page-content hr {
    border: none;
    border-top: 1px solid var(--iv-border);
    margin: 24px 0;
}

.iv-page-content strong {
    color: var(--iv-white);
}

/* PMPro white-bg elements inside page content need dark text */
.iv-page-content table,
.iv-page-content table th,
.iv-page-content table td,
.iv-page-content .pmpro_card,
.iv-page-content .pmpro_card *,
.pmpro_card,
.pmpro_card *,
.pmpro_checkout .pmpro_card *,
#pmpro_levels_table *,
.pmpro_confirmation_wrap .pmpro_card * {
    color: #222 !important;
}

.pmpro_card a,
.iv-page-content .pmpro_card a,
#pmpro_levels_table a {
    color: var(--iv-green-dark) !important;
}

/* ===== Dashboard ===== */
.iv-dashboard-header {
    padding: 48px 0 24px;
}

.iv-dashboard-header h1 {
    font-family: var(--iv-font-display);
    font-size: 32px;
    color: var(--iv-white);
    margin-bottom: 8px;
}

.iv-dashboard-level {
    color: var(--iv-green);
    font-weight: 600;
    font-size: 15px;
}

.iv-expires {
    color: var(--iv-text-muted);
    font-weight: 400;
    margin-left: 12px;
    font-size: 13px;
}

.iv-dashboard-picks,
.iv-dashboard-actions,
.iv-dashboard-account {
    padding: 24px 0;
}

.iv-picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.iv-pick-card {
    display: block;
    background: var(--iv-bg-card);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

.iv-pick-card:hover {
    background: var(--iv-bg-card-hover);
    border-color: var(--iv-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,200,83,0.15);
}

.iv-pick-card-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.iv-pick-card h3 {
    font-size: 20px;
    color: var(--iv-white);
    margin-bottom: 12px;
}

.iv-pick-card-cta {
    color: var(--iv-green);
    font-weight: 600;
    font-size: 14px;
}

.iv-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.iv-action-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--iv-bg-card);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    padding: 20px;
    text-decoration: none;
    color: var(--iv-text);
    transition: all 0.2s;
    font-weight: 500;
}

.iv-action-card:hover {
    background: var(--iv-bg-card-hover);
    color: var(--iv-green);
    border-color: var(--iv-green);
}

.iv-action-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.iv-empty-card {
    background: var(--iv-bg-card);
    border: 1px solid var(--iv-border);
    border-radius: var(--iv-radius);
    padding: 60px 40px;
    text-align: center;
}

.iv-empty-card h2 {
    color: var(--iv-white);
    margin-bottom: 8px;
}

.iv-empty-card p {
    color: var(--iv-text-muted);
    margin-bottom: 24px;
}

.iv-login-prompt {
    text-align: center;
    padding: 80px 0;
}

.iv-login-prompt h1 {
    font-family: var(--iv-font-display);
    font-size: 32px;
    color: var(--iv-white);
    margin-bottom: 12px;
}

.iv-login-prompt p {
    color: var(--iv-text-muted);
    margin-bottom: 24px;
}

/* ===== Footer ===== */
.iv-footer {
    background: #000;
    border-top: 2px solid var(--iv-gold);
    padding: 48px 0 32px;
    margin-top: 0;
}

.iv-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: start;
}

.iv-footer-brand .iv-logo-text,
.iv-footer-brand .iv-logo-accent {
    font-size: 20px;
    font-weight: 700;
}

.iv-footer-tagline {
    color: var(--iv-text-muted);
    font-size: 14px;
    margin-top: 8px;
}

.iv-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.iv-footer-links a {
    color: var(--iv-text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.iv-footer-links a:hover { color: var(--iv-green); }

.iv-footer-legal {
    grid-column: 1 / -1;
    border-top: 1px solid var(--iv-border);
    padding-top: 20px;
    font-size: 13px;
    color: var(--iv-text-muted);
}

.iv-disclaimer {
    margin-top: 4px;
    font-size: 12px;
    opacity: 0.7;
}

/* ===== PMPro form styling ===== */
/* Force dark text inside any PMPro white cards/tables */
#pmpro_levels_table,
#pmpro_levels_table th,
#pmpro_levels_table td,
.pmpro_card,
.pmpro_invoice,
.pmpro_confirmation_wrap,
#pmpro_form,
.pmpro_checkout,
.pmpro_account,
#pmpro_cancel,
#pmpro_account,
.pmpro_spacer,
.pmpro_actionlinks,
#pmpro_membership_change,
.pmpro_billing_wrap {
    color: #222 !important;
}

#pmpro_levels_table h2,
#pmpro_levels_table h3,
.pmpro_card h2,
.pmpro_card h3,
.pmpro_confirmation_wrap h2,
.pmpro_confirmation_wrap h3,
#pmpro_form h2,
#pmpro_form h3,
.pmpro_account h2,
.pmpro_account h3,
#pmpro_cancel h2,
#pmpro_cancel h3 {
    color: #111 !important;
}

#pmpro_levels_table a,
.pmpro_card a,
.pmpro_account a,
#pmpro_cancel a,
.pmpro_confirmation_wrap a {
    color: var(--iv-green-dark) !important;
}

/* Profile page */
#your-profile label,
#your-profile th,
#your-profile td,
.pmpro_member_profile_edit label,
.pmpro_member_profile_edit td {
    color: #222 !important;
}

#your-profile h2,
#your-profile h3,
.pmpro_member_profile_edit h2,
.pmpro_member_profile_edit h3 {
    color: #111 !important;
}

.pmpro_checkout,
#pmpro_form,
.pmpro_confirmation_wrap {
    max-width: 700px;
}

.pmpro_checkout .pmpro_card,
.pmpro_checkout fieldset {
    background: var(--iv-bg-card) !important;
    border: 1px solid var(--iv-border) !important;
    border-radius: var(--iv-radius) !important;
    padding: 24px !important;
    margin-bottom: 20px !important;
}

.pmpro_checkout label {
    color: var(--iv-text) !important;
    font-weight: 500;
}

.pmpro_checkout input[type="text"],
.pmpro_checkout input[type="password"],
.pmpro_checkout input[type="email"],
.pmpro_checkout select {
    background: #0a0a0a !important;
    border: 1px solid var(--iv-border) !important;
    color: var(--iv-text) !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
}

.pmpro_checkout input:focus {
    border-color: var(--iv-green) !important;
    outline: none !important;
}

.pmpro_btn,
.pmpro_checkout .pmpro_btn,
input.pmpro_btn {
    background: var(--iv-green) !important;
    color: #000 !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px 32px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.pmpro_btn:hover,
input.pmpro_btn:hover {
    background: var(--iv-green-light) !important;
}

.pmpro_message {
    background: var(--iv-bg-card) !important;
    border-left: 4px solid var(--iv-green) !important;
    color: var(--iv-text) !important;
    padding: 16px !important;
    border-radius: 0 var(--iv-radius) var(--iv-radius) 0 !important;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .iv-mobile-toggle { display: flex; }
    .iv-topbar { display: none; }

    .iv-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .iv-main {
        padding-top: 54px;
    }

    .iv-nav {
        display: none;
        position: absolute;
        top: 54px;
        left: 0;
        right: 0;
        background: #000;
        border-top: none;
        border-bottom: 1px solid var(--iv-border);
        padding: 16px 24px;
        z-index: 999;
        overflow: visible;
    }

    .iv-nav.active { display: block !important; }

    .iv-nav ul {
        flex-direction: column;
        gap: 4px;
    }

    .iv-nav ul li a {
        display: block;
        padding: 12px 14px;
    }

    .iv-nav .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: 16px;
        display: flex;
    }

    .iv-member-badge { display: none; }

    .iv-hero-banner { padding: 16px 16px 0; }
    .iv-hero-subtitle { font-size: 15px; }

    .iv-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .iv-features-grid { grid-template-columns: 1fr; }
    .iv-analysts-grid { grid-template-columns: 1fr; }
    .iv-radio-inner { grid-template-columns: 1fr; }
    .iv-actions-grid { grid-template-columns: 1fr; }
    .iv-footer-inner { grid-template-columns: 1fr; }
    .iv-footer-links { flex-direction: column; gap: 12px; }

    .iv-cta-card { padding: 40px 24px; }
    .iv-cta-card h2 { font-size: 28px; }
}

/* ===== WP Admin Bar offset (only shows in wp-admin now) ===== */
.admin-bar .iv-header {
    top: 32px;
}
@media (max-width: 782px) {
    .admin-bar .iv-header {
        top: 0;
    }
}
