/* ===================================
   VAULT PHOENIX - ONBOARDING PAGE LOCAL CSS
   TOP SECTION: Reset through Getting Started
   =================================== */

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================================
   BODY & PAGE SETUP
   =================================== */
.onboarding-page {
    opacity: 1 !important;
    background: var(--ember-gradient-background);
    min-height: 100vh;
}

/* ===================================
   SCROLL REVEAL ANIMATIONS - MATCHING MAIN
   =================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.stagger-1 {
    transition-delay: 0.1s;
}

.scroll-reveal.stagger-2 {
    transition-delay: 0.2s;
}

.scroll-reveal.stagger-3 {
    transition-delay: 0.3s;
}

.scroll-reveal.stagger-4 {
    transition-delay: 0.4s;
}

/* ===================================
   SECTION CONTAINER
   =================================== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===================================
   HERO SECTION - MATCHING MAIN STYLE
   =================================== */
.onboarding-hero-new {
    min-height: 100vh;
    background: var(--ember-gradient-background);
    padding: calc(var(--navbar-height) + 2rem) var(--container-padding) 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container-new {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Hero Badge - Matching Main Style */
.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(215, 51, 39, 0.15) 0%, 
        rgba(240, 165, 0, 0.15) 100%);
    border: 2px solid rgba(240, 165, 0, 0.4);
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ember-gold);
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(240, 165, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(240, 165, 0, 0.5);
    }
}

.hero-badge-new img {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 20px rgba(240, 165, 0, 0.5));
}

/* Hero Title - Matching Main */
.hero-title-new {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: #ffffff;
}

.gradient-text {
    background: var(--ember-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle-new {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 1100px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Quick Stats Bar - Matching Main Cards */
.stats-bar-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
    box-shadow: var(--ember-shadow-md);
}

.stat-inline {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
}

.stat-inline strong {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ember-gold);
    display: block;
}

.stat-inline span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(215, 51, 39, 0.3);
}

/* Audience Selector - Matching Main CTA Cards */
.audience-selector {
    margin: 2.5rem 0;
}

.audience-prompt {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--ember-gold);
}

.audience-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.audience-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
    cursor: pointer;
    transition: var(--transition-base);
    text-align: left;
}

.audience-btn:hover {
    border-color: var(--ember-orange);
    transform: translateY(-8px);
    box-shadow: var(--ember-shadow-xl);
}

.audience-btn[data-audience="developer"] {
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(26,15,30,0.9), rgba(45,24,46,0.85));
}

.audience-btn[data-audience="developer"]:hover {
    border-color: rgba(139, 92, 246, 0.8);
}

.audience-btn img {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 20px rgba(240, 165, 0, 0.5));
}

.audience-btn-content {
    flex: 1;
}

.audience-btn-content strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.audience-btn-content span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Quick Jump Navigation */
.quick-jump-nav {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(215, 51, 39, 0.3);
}

.quick-jump-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.quick-jump-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

.quick-jump-link {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.25rem;
    background: rgba(215, 51, 39, 0.1);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.quick-jump-link:hover {
    background: rgba(240, 165, 0, 0.2);
    border-color: var(--ember-gold);
    color: var(--ember-gold);
    transform: translateY(-2px);
}

/* ===================================
   TRUST BAR - MATCHING MAIN STYLE
   =================================== */
.trust-bar {
    padding: 2rem var(--container-padding);
    background: linear-gradient(135deg, 
        rgba(26, 15, 10, 0.9) 0%, 
        rgba(45, 24, 16, 0.85) 100%);
    border-top: 1px solid rgba(215, 51, 39, 0.3);
    border-bottom: 1px solid rgba(215, 51, 39, 0.3);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   SECTION HEADERS - MATCHING MAIN
   =================================== */
.section-header-clean {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, 
        rgba(215, 51, 39, 0.15) 0%, 
        rgba(240, 165, 0, 0.15) 100%);
    border: 2px solid rgba(240, 165, 0, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ember-gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title-clean {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: #ffffff;
    line-height: 1.2;
}

.section-description {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto;
}

/* ===================================
   WEB3 CRASH COURSE SECTION STYLES
   =================================== */

.web3-crash-course-section {
    padding: var(--section-padding) var(--container-padding);
    background: linear-gradient(135deg, 
        rgba(26, 15, 10, 0.9) 0%, 
        rgba(13, 12, 12, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.web3-crash-course-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at top, 
        rgba(240, 165, 0, 0.08) 0%, 
        transparent 60%);
    pointer-events: none;
}

.web3-shift-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===================================
   WEB2 vs WEB3 COMPARISON GRID
   =================================== */

.web3-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.web3-comparison-card {
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    border: 3px solid;
    transition: var(--transition-base);
    background: var(--ember-gradient-card);
}

.web3-comparison-card.outdated {
    border-color: rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, 
        rgba(30, 15, 15, 0.9) 0%, 
        rgba(45, 20, 20, 0.85) 100%);
}

.web3-comparison-card.modern {
    border-color: rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, 
        rgba(15, 30, 20, 0.9) 0%, 
        rgba(20, 45, 30, 0.85) 100%);
}

.web3-comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ember-shadow-xl);
}

.comparison-header {
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.comparison-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.comparison-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.outdated-badge {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.modern-badge {
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.comparison-list li {
    padding: 1rem;
    margin-bottom: 0.85rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    border-left: 4px solid;
    transition: var(--transition-base);
}

.outdated .comparison-list li {
    border-color: rgba(239, 68, 68, 0.5);
}

.modern .comparison-list li {
    border-color: rgba(34, 197, 94, 0.5);
}

.comparison-list li:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(3px);
}

.comparison-list strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.comparison-list span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.comparison-problem,
.comparison-solution {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid;
}

.comparison-problem {
    border-color: rgba(239, 68, 68, 0.4);
}

.comparison-solution {
    border-color: rgba(34, 197, 94, 0.4);
}

.comparison-problem strong,
.comparison-solution strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.comparison-problem strong {
    color: #ef4444;
}

.comparison-solution strong {
    color: #22c55e;
}

.comparison-problem p,
.comparison-solution p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.comparison-problem em,
.comparison-solution em {
    color: var(--ember-gold);
    font-style: italic;
    font-weight: 600;
}

/* ===================================
   SOLANA EXPLAINER CARD
   =================================== */

.solana-explainer-card {
    padding: 2.5rem;
    background: var(--ember-gradient-card);
    border: 3px solid rgba(139, 92, 246, 0.4);
    border-radius: var(--radius-2xl);
    margin-bottom: 3rem;
    box-shadow: var(--ember-shadow-lg);
}

.solana-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.solana-icon {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.6));
    flex-shrink: 0;
}

.solana-title-group h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.solana-title-group p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.solana-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.solana-benefit {
    padding: 1.75rem;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.solana-benefit:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-3px);
}

.benefit-stat {
    font-size: 2.25rem;
    font-weight: 800;
    color: #a78bfa;
    margin-bottom: 0.4rem;
}

.benefit-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.85rem;
}

.solana-benefit p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.solana-bottom-cta {
    padding-top: 2rem;
    border-top: 2px solid rgba(139, 92, 246, 0.3);
}

.solana-quote {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.solana-quote svg {
    flex-shrink: 0;
    color: #a78bfa;
    width: 32px;
    height: 32px;
}

.solana-quote p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.solana-quote strong {
    color: var(--ember-gold);
}

/* ===================================
   PLAYER FLOW CARD
   =================================== */

.player-flow-card {
    padding: 2.5rem;
    background: var(--ember-gradient-card);
    border: 3px solid rgba(240, 165, 0, 0.4);
    border-radius: var(--radius-2xl);
    margin-bottom: 3rem;
}

.player-flow-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: #ffffff;
    text-align: center;
}

.player-flow-intro {
    text-align: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2.5rem 0;
}

.player-steps {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.player-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number-circle {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ember-gradient-primary);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 20px rgba(240, 165, 0, 0.5);
    border: 3px solid rgba(240, 165, 0, 0.3);
}

.step-content-player h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.65rem 0;
    color: #ffffff;
}

.step-content-player p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.step-content-player strong {
    color: var(--ember-gold);
}

.player-flow-result {
    padding: 1.5rem;
    background: rgba(240, 165, 0, 0.1);
    border-left: 4px solid var(--ember-orange);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.player-flow-result strong {
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   KEY INSIGHT CARD
   =================================== */

.key-insight-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, 
        rgba(240, 165, 0, 0.15) 0%, 
        rgba(215, 51, 39, 0.1) 100%);
    border: 3px solid var(--ember-orange);
    border-radius: var(--radius-2xl);
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    box-shadow: var(--ember-shadow-xl);
}

.insight-icon {
    font-size: 4rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 20px rgba(240, 165, 0, 0.6));
}

.insight-content h4 {
    font-size: 1.65rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: var(--ember-gold);
}

.insight-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
}

.insight-content p:last-child {
    margin-bottom: 0;
}

.insight-content strong {
    color: #ffffff;
    font-weight: 700;
}

/* ===================================
   CRASH COURSE CTA
   =================================== */

.crash-course-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(240, 165, 0, 0.4);
    border-radius: var(--radius-2xl);
    box-shadow: var(--ember-shadow-md);
}

.crash-course-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.crash-course-cta p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.crash-course-cta em {
    color: var(--ember-gold);
    font-style: italic;
    font-weight: 600;
}

/* ===================================
   GETTING STARTED SECTION
   =================================== */
.getting-started-section {
    padding: var(--section-padding) var(--container-padding);
    background: var(--ember-gradient-background);
}

/* Path Tabs - Matching Main Style */
.path-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.path-tab {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 2rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition-base);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.path-tab[data-path="developer"] {
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(26,15,30,0.9), rgba(45,24,46,0.85));
}

.path-tab img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 15px rgba(240, 165, 0, 0.4));
    opacity: 0.7;
    transition: var(--transition-base);
}

.path-tab span {
    font-size: 1rem;
    display: block;
}

.path-tab small {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.path-tab:hover {
    transform: translateY(-4px);
    box-shadow: var(--ember-shadow-lg);
    border-color: rgba(240, 165, 0, 0.5);
}

.path-tab[data-path="developer"]:hover {
    border-color: rgba(139, 92, 246, 0.5);
}

.path-tab.active {
    border-color: var(--ember-orange);
    background: linear-gradient(135deg, 
        rgba(240, 165, 0, 0.15) 0%, 
        rgba(215, 51, 39, 0.1) 100%);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: var(--ember-shadow-xl);
}

.path-tab[data-path="developer"].active {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15) 0%, 
        rgba(124, 58, 237, 0.1) 100%);
}

.path-tab.active img {
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(240, 165, 0, 0.6));
}

/* Path Content */
.path-content {
    display: none;
}

.path-content.active {
    display: block;
}

/* Path Intro Card - Matching Main Cards */
.path-intro-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
    margin-bottom: 3rem;
    box-shadow: var(--ember-shadow-md);
}

.path-intro-icon {
    flex-shrink: 0;
}

.path-intro-icon img {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 0 25px rgba(240, 165, 0, 0.6));
}

.path-intro-text h3 {
    font-size: 1.65rem;
    font-weight: 800;
    margin: 0 0 0.85rem 0;
    color: #ffffff;
}

.path-intro-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.25rem 0;
}

.path-intro-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.path-intro-stats span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.path-intro-stats strong {
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   STEPS TIMELINE - MATCHING MAIN STEPS
   =================================== */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: 60px;
    width: 3px;
    background: linear-gradient(180deg, 
        var(--ember-red) 0%, 
        var(--ember-orange) 50%,
        var(--ember-gold) 100%);
    opacity: 0.3;
}

.step-card {
    display: flex;
    gap: 1.75rem;
    padding: 2rem 1.75rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
    transition: var(--transition-base);
    position: relative;
}

.step-card:hover {
    border-color: var(--ember-orange);
    transform: translateY(-5px);
    box-shadow: var(--ember-shadow-xl);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ember-gradient-primary);
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 16px rgba(240, 165, 0, 0.4);
    position: relative;
    z-index: 1;
    border: 3px solid rgba(240, 165, 0, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.85rem 0;
    color: #ffffff;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.5rem 0;
}

/* Step Details - Matching Main Benefit Items */
.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem;
    background: rgba(215, 51, 39, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-base);
}

.detail-item:hover {
    background: rgba(240, 165, 0, 0.15);
    transform: translateX(3px);
}

.detail-icon {
    flex-shrink: 0;
    color: var(--ember-gold);
}

/* Step CTA */
.step-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(240, 165, 0, 0.1);
    border: 1px solid rgba(240, 165, 0, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--ember-gold);
    font-weight: 600;
}

/* Step Demo Links */
.step-demo-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.demo-link-btn {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    background: rgba(215, 51, 39, 0.1);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.demo-link-btn:hover {
    background: rgba(240, 165, 0, 0.15);
    border-color: var(--ember-orange);
    transform: translateY(-2px);
    box-shadow: var(--ember-shadow-md);
}

.demo-link-btn img {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 15px rgba(240, 165, 0, 0.4));
}

/* Location Types - Matching Main Technology Cards */
.location-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.location-type-card {
    padding: 1.5rem;
    background: rgba(215, 51, 39, 0.1);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.location-type-card:hover {
    background: rgba(240, 165, 0, 0.15);
    border-color: var(--ember-orange);
    transform: translateY(-3px);
}

.location-type-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(240, 165, 0, 0.4));
}

.location-type-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.85rem 0;
    color: var(--ember-gold);
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.location-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ember-gold);
    font-weight: 700;
}

/* Code Block - Matching Main Style */
.code-block {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0d1117;
    border: 2px solid rgba(215, 51, 39, 0.3);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    background: rgba(26, 15, 10, 0.9);
    border-bottom: 1px solid rgba(215, 51, 39, 0.3);
}

.code-header span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.copy-code-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(240, 165, 0, 0.1);
    border: 1px solid var(--ember-orange);
    border-radius: var(--radius-md);
    color: var(--ember-gold);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.copy-code-btn:hover {
    background: var(--ember-orange);
    color: white;
    transform: translateY(-1px);
}

.code-block pre {
    margin: 0;
    padding: 1.5rem;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #c9d1d9;
}

/* Integration Checklist */
.integration-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.checklist-section h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--ember-gold);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0;
    cursor: pointer;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-base);
}

.checkbox-item:hover {
    color: var(--ember-gold);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--ember-orange);
}

/* Success Banner Card - Matching Main */
.success-banner-card {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, 
        rgba(240, 165, 0, 0.15) 0%, 
        rgba(215, 51, 39, 0.1) 100%);
    border: 3px solid var(--ember-orange);
    border-radius: var(--radius-2xl);
    box-shadow: var(--ember-shadow-xl);
}

.success-banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.success-banner-content img {
    width: 96px;
    height: 96px;
    filter: drop-shadow(0 0 30px rgba(240, 165, 0, 0.6));
    flex-shrink: 0;
}

.success-banner-text {
    flex: 1;
}

.success-banner-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.65rem 0;
    color: #ffffff;
}

.success-banner-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ===================================
   BUTTONS - MATCHING MAIN
   =================================== */
.btn-primary-clean {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.75rem;
    background: var(--ember-gradient-primary);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    box-shadow: var(--ember-shadow-md);
    min-height: 44px;
}

.btn-primary-clean:hover {
    transform: translateY(-4px);
    box-shadow: var(--ember-shadow-lg);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary-clean.large {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
    min-height: 54px;
}

.btn-secondary-clean {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.75rem;
    background: transparent;
    color: var(--ember-gold);
    border: 2px solid var(--ember-orange);
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    min-height: 44px;
}

.btn-secondary-clean:hover {
    background: rgba(240, 165, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--ember-shadow-md);
}

.btn-secondary-clean.large {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
    min-height: 54px;
}

/* ===================================
   RESPONSIVE - HERO & GETTING STARTED
   =================================== */
@media (max-width: 1024px) {
    .stats-bar-inline {
        gap: 1.5rem;
    }
    
    .path-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .path-tab {
        justify-content: center;
    }
    
    .steps-timeline::before {
        display: none;
    }
    
    .location-types {
        grid-template-columns: 1fr;
    }
    
    .web3-comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .solana-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }
}

@media (max-width: 768px) {
    .onboarding-hero-new {
        padding: calc(var(--navbar-height) + 2rem) 1rem 3rem;
    }
    
    .stats-bar-inline {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 2px;
    }
    
    .audience-buttons {
        grid-template-columns: 1fr;
    }
    
    .quick-jump-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quick-jump-link {
        justify-content: center;
        text-align: center;
    }
    
    .trust-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .path-intro-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-card {
        flex-direction: column;
        padding: 1.75rem 1.5rem;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }
    
    .step-demo-links {
        grid-template-columns: 1fr;
    }
    
    .success-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .success-banner-content img {
        width: 80px;
        height: 80px;
    }
    
    .web3-crash-course-section {
        padding: 3rem 1rem;
    }
    
    .web3-comparison-card {
        padding: 2rem 1.5rem;
    }
    
    .solana-explainer-card,
    .player-flow-card,
    .key-insight-card,
    .crash-course-cta {
        padding: 2rem 1.5rem;
    }
    
    .solana-header {
        flex-direction: column;
        text-align: center;
    }
    
    .solana-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .player-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .key-insight-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .solana-quote {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .onboarding-hero-new {
        padding: calc(var(--navbar-height) + 1.5rem) 1rem 2.5rem;
    }
    
    .hero-badge-new img {
        width: 20px;
        height: 20px;
    }
    
    .audience-btn {
        flex-direction: column;
        text-align: center;
    }
    
    .path-intro-icon img {
        width: 60px;
        height: 60px;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .integration-checklist {
        grid-template-columns: 1fr;
    }
    
    .comparison-icon {
        font-size: 2.5rem;
    }
    
    .comparison-header h3 {
        font-size: 1.5rem;
    }
    
    .benefit-stat {
        font-size: 2rem;
    }
    
    .solana-icon {
        width: 56px;
        height: 56px;
    }
    
    .step-number-circle {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .insight-icon {
        font-size: 3rem;
    }
}

/* ===================================
   END OF TOP SECTION CSS
   SALES TOOLKIT SECTION STARTS BELOW
   =================================== */
.sales-toolkit-section {
    padding: var(--section-padding) var(--container-padding);
    background: linear-gradient(135deg, 
        rgba(13, 12, 12, 0.95) 0%, 
        rgba(26, 15, 10, 0.9) 100%);
}

/* Toolkit Navigation - Matching Main Tabs */
.toolkit-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.toolkit-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.toolkit-nav-btn svg {
    flex-shrink: 0;
}

.toolkit-nav-btn:hover {
    border-color: rgba(240, 165, 0, 0.5);
    background: rgba(240, 165, 0, 0.1);
    transform: translateY(-2px);
}

.toolkit-nav-btn.active {
    border-color: var(--ember-orange);
    background: linear-gradient(135deg, 
        rgba(240, 165, 0, 0.15) 0%, 
        rgba(215, 51, 39, 0.1) 100%);
    color: #ffffff;
    box-shadow: var(--ember-shadow-md);
}

/* Toolkit Content */
.toolkit-content {
    display: none;
}

.toolkit-content.active {
    display: block;
}

.toolkit-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.toolkit-intro p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================
   SALES SCRIPTS - MATCHING MAIN CARDS
   =================================== */
.scripts-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.script-card-clean {
    padding: 2rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
    transition: var(--transition-base);
}

.script-card-clean:hover {
    border-color: var(--ember-orange);
    transform: translateY(-5px);
    box-shadow: var(--ember-shadow-xl);
}

.script-header-clean {
    margin-bottom: 1.5rem;
}

.script-meta {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.script-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, 
        rgba(215, 51, 39, 0.15) 0%, 
        rgba(240, 165, 0, 0.15) 100%);
    border: 2px solid rgba(240, 165, 0, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ember-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.script-success-rate {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: #22c55e;
    text-transform: uppercase;
}

.script-header-clean h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.65rem 0;
    color: #ffffff;
}

.script-use-case {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-style: italic;
}

/* Script Body */
.script-body {
    position: relative;
    margin-bottom: 1.5rem;
}

.copy-script-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: rgba(240, 165, 0, 0.15);
    border: 2px solid var(--ember-orange);
    border-radius: var(--radius-md);
    color: var(--ember-gold);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 1;
}

.copy-script-btn:hover {
    background: var(--ember-orange);
    color: white;
    transform: translateY(-2px);
}

.script-text {
    padding: 1.75rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
    margin-top: 3rem;
}

.script-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1rem 0;
}

.script-text p:last-child {
    margin-bottom: 0;
}

.script-text strong {
    color: var(--ember-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.script-text ul {
    margin: 0.85rem 0;
    padding-left: 1.5rem;
}

.script-text li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0.65rem 0;
}

/* Script Tips - Matching Main Value Props */
.script-tips {
    padding: 1.25rem;
    background: rgba(240, 165, 0, 0.1);
    border-left: 4px solid var(--ember-orange);
    border-radius: var(--radius-md);
}

.script-tips strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ember-gold);
    margin-bottom: 0.85rem;
}

.script-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.script-tips li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.script-tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   PROPOSALS - MATCHING MAIN CARDS
   =================================== */
.proposals-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.proposal-card-clean {
    padding: 2rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
    transition: var(--transition-base);
}

.proposal-card-clean:hover {
    border-color: var(--ember-orange);
    transform: translateY(-5px);
    box-shadow: var(--ember-shadow-xl);
}

.proposal-header-clean {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.proposal-icon {
    flex-shrink: 0;
}

.proposal-icon img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 0 25px rgba(240, 165, 0, 0.5));
}

.proposal-title-group h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.proposal-title-group p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Proposal Body */
.proposal-body {
    position: relative;
    margin-bottom: 1.5rem;
}

.copy-proposal-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: rgba(240, 165, 0, 0.15);
    border: 2px solid var(--ember-orange);
    border-radius: var(--radius-md);
    color: var(--ember-gold);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 1;
}

.copy-proposal-btn:hover {
    background: var(--ember-orange);
    color: white;
    transform: translateY(-2px);
}

.proposal-text {
    padding: 1.75rem;
    background: #0d1117;
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
    margin-top: 3rem;
    overflow-x: auto;
}

.proposal-text pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.8;
    color: #c9d1d9;
    white-space: pre-wrap;
}

/* Proposal Footer - Matching Main Stats */
.proposal-footer {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(215, 51, 39, 0.3);
}

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

.proposal-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ember-gold);
    margin-bottom: 0.4rem;
}

.proposal-stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   RESPONSIVE - STEPS & SCRIPTS
   =================================== */
@media (max-width: 1024px) {
    .steps-timeline::before {
        display: none;
    }
    
    .location-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        padding: 1.75rem 1.5rem;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }
    
    .step-demo-links {
        grid-template-columns: 1fr;
    }
    
    .success-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .success-banner-content img {
        width: 80px;
        height: 80px;
    }
    
    .toolkit-nav {
        flex-direction: column;
    }
    
    .toolkit-nav-btn {
        justify-content: center;
    }
    
    .copy-script-btn,
    .copy-proposal-btn {
        position: static;
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .script-text,
    .proposal-text {
        margin-top: 0;
    }
    
    .proposal-header-clean {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .proposal-footer {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .script-header-clean h3 {
        font-size: 1.25rem;
    }
    
    .integration-checklist {
        grid-template-columns: 1fr;
    }
}

/* END OF PART 2 *//* ===================================
   VAULT PHOENIX - ONBOARDING PAGE LOCAL CSS
   PART 3: PRICING, CALCULATOR, TECHNICAL, FINAL CTA
   Matching Main Page Styles
   =================================== */

/* ===================================
   PRICING GUIDE - MATCHING MAIN PRICING
   =================================== */
.pricing-comparison-table {
    margin-bottom: 3rem;
    overflow-x: auto;
}

.clean-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.clean-table thead {
    background: linear-gradient(135deg, 
        rgba(240, 165, 0, 0.15) 0%, 
        rgba(215, 51, 39, 0.1) 100%);
}

.clean-table th {
    padding: 1.25rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ember-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(215, 51, 39, 0.3);
}

.clean-table td {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.clean-table tbody tr {
    transition: var(--transition-base);
}

.clean-table tbody tr:hover {
    background: rgba(240, 165, 0, 0.05);
}

.price-cell {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

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

.price-cell.highlight .price-main {
    color: var(--ember-gold);
    font-size: 1.65rem;
}

.margin-highlight {
    font-size: 1.65rem;
    font-weight: 800;
    color: #22c55e;
}

/* Pricing Tips Grid - Matching Main Value Props */
.pricing-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-tip-card {
    padding: 1.75rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.pricing-tip-card:hover {
    border-color: var(--ember-orange);
    transform: translateY(-5px);
    box-shadow: var(--ember-shadow-lg);
}

.pricing-tip-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.pricing-tip-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-tip-card li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.65rem 0;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.6;
}

.pricing-tip-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ember-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-tip-card strong {
    color: var(--ember-gold);
    font-weight: 700;
}

/* ===================================
   OBJECTION HANDLING - MATCHING MAIN
   =================================== */
.objections-list {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.objection-card {
    padding: 1.75rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.objection-card:hover {
    border-color: var(--ember-orange);
    transform: translateY(-5px);
    box-shadow: var(--ember-shadow-lg);
}

.objection-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.objection-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(240, 165, 0, 0.4));
}

.objection-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    line-height: 1.4;
}

.objection-response {
    padding-left: 2.75rem;
}

.objection-response strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ember-gold);
    margin-bottom: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.objection-response p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ===================================
   ROI CALCULATOR - MATCHING MAIN
   =================================== */
.roi-calculator-section {
    padding: var(--section-padding) var(--container-padding);
    background: var(--ember-gradient-background);
}

.calculator-container-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-inputs,
.calculator-results {
    padding: 2rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
    box-shadow: var(--ember-shadow-md);
}

.calculator-inputs h3,
.calculator-results h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    color: var(--ember-gold);
}

/* Input Groups - Matching Main Form Styles */
.input-group-clean {
    margin-bottom: 1.5rem;
}

.input-group-clean label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.65rem;
}

.input-with-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.input-with-display input[type="range"] {
    flex: 1;
    height: 8px;
    background: rgba(215, 51, 39, 0.2);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
    border: 1px solid rgba(215, 51, 39, 0.3);
}

.input-with-display input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--ember-gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(240, 165, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.input-with-display input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--ember-gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 12px rgba(240, 165, 0, 0.5);
}

.input-value {
    min-width: 50px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ember-gold);
}

.input-with-prefix {
    position: relative;
}

.input-prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: var(--ember-gold);
    font-weight: 700;
}

.input-with-prefix input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    background: rgba(15, 15, 15, 0.6);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition-base);
}

.input-with-prefix input:focus {
    outline: none;
    border-color: var(--ember-orange);
    box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.2);
}

.input-group-clean select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(15, 15, 15, 0.6);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.input-group-clean select:focus {
    outline: none;
    border-color: var(--ember-orange);
    box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.2);
}

/* Calculator Results - Matching Main Stats */
.result-card-clean {
    padding: 1.25rem;
    background: rgba(215, 51, 39, 0.1);
    border: 1px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    transition: var(--transition-base);
}

.result-card-clean:hover {
    background: rgba(240, 165, 0, 0.15);
}

.result-card-clean.primary-result {
    background: linear-gradient(135deg, 
        rgba(240, 165, 0, 0.15) 0%, 
        rgba(215, 51, 39, 0.1) 100%);
    border: 2px solid var(--ember-orange);
    padding: 2rem;
    box-shadow: var(--ember-shadow-md);
}

.result-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.result-value {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.result-card-clean.primary-result .result-value {
    font-size: 2.75rem;
    color: var(--ember-gold);
}

.result-value.profit {
    color: #22c55e;
}

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

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

.calculator-notes {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(240, 165, 0, 0.1);
    border-left: 4px solid var(--ember-orange);
    border-radius: var(--radius-sm);
}

.calculator-notes p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}

/* Revenue Examples - Matching Main Tables */
.revenue-examples {
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.revenue-examples h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 2rem 0;
    text-align: center;
    color: #ffffff;
}

.examples-table-wrapper {
    overflow-x: auto;
}

.example-business {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.example-business img {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 15px rgba(240, 165, 0, 0.4));
}

.example-business span {
    font-weight: 600;
}

.annual-highlight {
    font-size: 1.3rem;
    font-weight: 800;
    color: #22c55e;
}

/* ===================================
   TECHNICAL SECTION - MATCHING MAIN
   =================================== */
.technical-section {
    padding: var(--section-padding) var(--container-padding);
    background: linear-gradient(135deg, 
        rgba(13, 12, 12, 0.95) 0%, 
        rgba(26, 15, 10, 0.9) 100%);
}

.tech-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tech-resource-card {
    padding: 2rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.tech-resource-card:hover {
    border-color: var(--ember-orange);
    transform: translateY(-8px);
    box-shadow: var(--ember-shadow-xl);
}

.tech-resource-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(240, 165, 0, 0.15) 0%, 
        rgba(215, 51, 39, 0.1) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    color: var(--ember-gold);
    border: 2px solid rgba(240, 165, 0, 0.3);
}

.tech-resource-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.85rem 0;
    color: #ffffff;
}

.tech-resource-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1.25rem 0;
    flex: 1;
}

.resource-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ember-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Code Example Section */
.code-example-section {
    padding: 2.5rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
    max-width: 1200px;
    margin: 0 auto;
}

.code-example-section h3 {
    font-size: 1.65rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    color: #ffffff;
}

.code-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(215, 51, 39, 0.3);
}

.code-tab {
    padding: 0.85rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.code-tab:hover {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(240, 165, 0, 0.05);
}

.code-tab.active {
    color: var(--ember-gold);
    border-bottom-color: var(--ember-orange);
    background: rgba(240, 165, 0, 0.1);
}

.code-tab-content {
    display: none;
}

.code-tab-content.active {
    display: block;
}

/* ===================================
   FINAL CTA SECTION - MATCHING MAIN
   =================================== */
.final-cta-section {
    padding: var(--section-padding) var(--container-padding);
    background: linear-gradient(180deg, 
        var(--ember-gradient-background) 0%, 
        rgba(13, 12, 12, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(240, 165, 0, 0.1) 0%, 
        transparent 70%);
    pointer-events: none;
}

.cta-container-clean {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content-clean {
    text-align: center;
}

.cta-phoenix-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 40px rgba(240, 165, 0, 0.6));
    animation: phoenixPulse 3s ease-in-out infinite;
}

@keyframes phoenixPulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(240, 165, 0, 0.6))
                drop-shadow(0 0 60px rgba(215, 51, 39, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(240, 165, 0, 0.9))
                drop-shadow(0 0 80px rgba(215, 51, 39, 0.6));
    }
}

.cta-title-clean {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0 0 1.25rem 0;
    color: #ffffff;
    line-height: 1.2;
}

.cta-subtitle-clean {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-clean {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: rgba(240, 165, 0, 0.05);
    border: 1px solid rgba(240, 165, 0, 0.2);
    border-radius: var(--radius-xl);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.trust-badge-item svg {
    color: var(--ember-gold);
    flex-shrink: 0;
}

/* ===================================
   RESPONSIVE - CALCULATOR & FINAL
   =================================== */
@media (max-width: 1024px) {
    .calculator-container-clean {
        grid-template-columns: 1fr;
    }
    
    .tech-resources-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .pricing-tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .calculator-inputs,
    .calculator-results {
        padding: 1.5rem;
    }
    
.results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-value {
        font-size: 1.75rem;
    }
    
    .result-card-clean.primary-result .result-value {
        font-size: 2.25rem;
    }
    
    .clean-table {
        font-size: 0.85rem;
    }
    
    .clean-table th,
    .clean-table td {
        padding: 0.85rem;
    }
    
    .objection-response {
        padding-left: 0;
    }
    
    .objection-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .tech-resources-grid {
        grid-template-columns: 1fr;
    }
    
    .code-tabs {
        flex-wrap: wrap;
    }
    
    .code-example-section {
        padding: 1.5rem;
    }
    
    .cta-buttons-clean {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-clean.large,
    .btn-secondary-clean.large {
        width: 100%;
    }
    
    .cta-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-badge-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .calculator-inputs h3,
    .calculator-results h3 {
        font-size: 1.25rem;
    }
    
    .input-value {
        font-size: 1.1rem;
    }
    
    .result-value {
        font-size: 1.5rem;
    }
    
    .result-card-clean.primary-result .result-value {
        font-size: 2rem;
    }
    
    .cta-phoenix-image {
        width: 100px;
        height: 100px;
    }
    
    .code-tab {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ===================================
   ACCESSIBILITY & FOCUS STATES
   =================================== */
.btn-primary-clean:focus,
.btn-secondary-clean:focus,
.path-tab:focus,
.toolkit-nav-btn:focus,
.code-tab:focus,
.audience-btn:focus,
.demo-link-btn:focus,
.tech-resource-card:focus {
    outline: 3px solid var(--ember-orange);
    outline-offset: 3px;
}

input:focus,
select:focus,
.checkbox-item input:focus {
    outline: 2px solid var(--ember-orange);
    outline-offset: 2px;
}

/* Touch targets for mobile */
@media (max-width: 768px) {
    .btn-primary-clean,
    .btn-secondary-clean,
    .demo-link-btn,
    .quick-jump-link,
    .toolkit-nav-btn,
    .path-tab {
        min-height: 48px;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }
}

/* ===================================
   REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .cta-phoenix-image {
        animation: none;
    }
    
    .hero-badge-new {
        animation: none;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .onboarding-hero-new,
    .trust-bar,
    .final-cta-section {
        break-inside: avoid;
    }
    
    .step-card,
    .script-card-clean,
    .proposal-card-clean,
    .objection-card {
        page-break-inside: avoid;
    }
}

/* ========================================
   CSS ADDITIONS FOR ONBOARDING PAGE
   Add these to the END of onboarding/local.css
   ======================================== */

/* ===================================
   FIX 1: COMPACT STATS BAR (70% width)
   =================================== */
.stats-bar-inline {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .stats-bar-inline {
        max-width: 100%;
    }
}

/* ===================================
   FIX 3: TWO CALCULATOR LAYOUT
   =================================== */
.calculator-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.calculator-scenario {
    padding: 2rem;
    background: var(--ember-gradient-card);
    border: 2px solid rgba(215, 51, 39, 0.3);
    border-radius: var(--radius-2xl);
    box-shadow: var(--ember-shadow-md);
}

.calculator-scenario h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ember-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.calculator-scenario .input-group-clean {
    margin-bottom: 1.5rem;
}

.calculator-scenario .calculator-results {
    margin-top: 2rem;
}

.calculator-scenario .result-card-clean {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .calculator-scenarios-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FIX 4: HIDE QUICK START BY DEFAULT
   =================================== */
.code-example-section[style*="display: none"] {
    display: none !important;
}

/* Show when JavaScript adds display: block */
.code-example-section[style*="display: block"] {
    display: block !important;
}
