/* ==========================================
   SALES ONBOARDING PAGE STYLES - TRON TERMINAL
   ========================================== */

/* Cursor Particles Canvas */
#cursor-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Base overrides for onboarding page */
body.onboarding-page {
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(180deg, #0a0e1a 0%, #0d1117 50%, #0a0e1a 100%);
}

/* Navigation - Enhanced Tron Terminal Style */
.onboarding-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.onboarding-nav .nav-logo {
    text-decoration: none;
}

.onboarding-nav .nav-logo h1 {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

/* Terminal-style back link */
.terminal-back-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00f5ff;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #00f5ff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

.terminal-back-link:hover {
    background: rgba(0, 245, 255, 0.1);
    box-shadow:
        0 0 20px rgba(0, 245, 255, 0.4),
        inset 0 0 20px rgba(0, 245, 255, 0.05);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
}

.terminal-prompt {
    color: #00f5ff;
    font-weight: bold;
    margin-right: 0.2rem;
}

.terminal-text {
    letter-spacing: 0.05em;
    font-weight: 500;
}

.terminal-cursor-inline {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: #00f5ff;
    margin-left: 2px;
    animation: cursorBlink 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes cursorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.onboarding-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 245, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.03) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 50px;
    color: #00f5ff;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.onboarding-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.onboarding-hero h1 .highlight {
    background: linear-gradient(135deg, #00f5ff 0%, #00a8b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rotating-problems {
    margin-bottom: 2.5rem;
    min-height: 5rem;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.rotating-text {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    display: inline-block;
    background: linear-gradient(90deg, #ff6b6b, #a855f7, #ff6b6b, #a855f7);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: colorShift 4s ease-in-out infinite;
}

@keyframes colorShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cursor {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    color: #a855f7;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.hero-stat .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00f5ff;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.hero-stat .stat-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65); /* WCAG 2.1 AA compliant - 4.5:1 contrast ratio */
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #00f5ff 0%, #00a8b5 100%);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4);
}

.hero-cta i {
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Problem Section - Glassmorphic Cards */
.problem-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.problem-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #fff;
}

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

.problem-card {
    padding: 2rem;
    background: rgba(10, 14, 26, 0.4);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.problem-card:hover {
    background: rgba(0, 245, 255, 0.05);
    border-color: rgba(0, 245, 255, 0.3);
    transform: translateY(-5px);
    box-shadow:
        0 0 20px rgba(0, 245, 255, 0.2),
        0 0 40px rgba(0, 245, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 16px rgba(0, 0, 0, 0.4);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #00f5ff;
    font-size: 1.2rem;
}

.problem-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.problem-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65); /* WCAG 2.1 AA compliant - 4.5:1 contrast ratio */
    line-height: 1.6;
}

/* Social Proof Section - Enhanced Glassmorphism */
.social-proof {
    padding: 6rem 0;
}

.proof-header {
    text-align: center;
    margin-bottom: 3rem;
}

.proof-header h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.proof-header p {
    color: rgba(255, 255, 255, 0.65); /* WCAG 2.1 AA compliant - 4.5:1 contrast ratio */
}

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

.testimonial-card {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(0, 245, 255, 0.04) 0%, rgba(10, 14, 26, 0.5) 100%);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 16px;
    position: relative;
    backdrop-filter: blur(12px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 30px rgba(0, 245, 255, 0.05);
}

.quote-icon {
    color: rgba(0, 245, 255, 0.3);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-info strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65); /* WCAG 2.1 AA compliant - 4.5:1 contrast ratio */
}

.result-badge {
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ROI Calculator Section - Full Glassmorphism */
.roi-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.roi-header {
    text-align: center;
    margin-bottom: 3rem;
}

.roi-header h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.roi-header p {
    color: rgba(255, 255, 255, 0.65); /* WCAG 2.1 AA compliant - 4.5:1 contrast ratio */
}

.roi-calculator {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(10, 14, 26, 0.5);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 40px rgba(0, 245, 255, 0.08);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider-container input[type="range"] {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    -webkit-appearance: none;
    appearance: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #00f5ff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

.slider-value {
    min-width: 80px;
    text-align: right;
    color: #00f5ff;
    font-weight: 600;
    font-size: 1.1rem;
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-card {
    padding: 1.5rem;
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.result-card.highlight-card {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.12) 0%, rgba(10, 14, 26, 0.7) 100%);
    border-color: rgba(0, 245, 255, 0.35);
    box-shadow:
        0 0 30px rgba(0, 245, 255, 0.2),
        0 0 60px rgba(0, 245, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 8px 16px rgba(0, 0, 0, 0.4);
}

.result-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65); /* WCAG 2.1 AA compliant - 4.5:1 contrast ratio */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00f5ff;
}

.highlight-card .result-value {
    font-size: 2.5rem;
}

.result-value::before {
    content: '\20AC';
    font-size: 0.7em;
    margin-right: 0.1em;
}

.result-card:nth-child(2) .result-value::before,
.result-card:nth-child(3) .result-value::before {
    content: none;
}

.result-suffix {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65); /* WCAG 2.1 AA compliant - 4.5:1 contrast ratio */
}

/* Qualification Section - Premium Glassmorphism */
.qualification-section {
    padding: 6rem 0;
}

.qual-header {
    text-align: center;
    margin-bottom: 3rem;
}

.qual-header h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.qual-header p {
    color: rgba(255, 255, 255, 0.65); /* WCAG 2.1 AA compliant - 4.5:1 contrast ratio */
}

.qualification-content {
    max-width: 800px;
    margin: 0 auto;
}

.enterprise-form {
    background: linear-gradient(145deg, rgba(0, 245, 255, 0.04) 0%, rgba(10, 14, 26, 0.6) 100%);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 40px rgba(0, 245, 255, 0.08);
}

.form-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, #00f5ff 0%, #00a8b5 100%);
    color: #0a0a0a;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.form-step h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

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

.option-grid.multi {
    grid-template-columns: repeat(3, 1fr);
}

.option-card {
    position: relative;
    cursor: pointer;
}

.option-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: rgba(10, 14, 26, 0.4);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.option-content i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.3rem;
}

.option-content strong {
    color: #fff;
    font-size: 0.95rem;
}

.option-content .desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65); /* WCAG 2.1 AA compliant - 4.5:1 contrast ratio */
}

.option-content .tag {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 0.2rem 0.6rem;
    background: #00f5ff;
    color: #0a0a0a;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 10px;
}

.option-card:hover .option-content {
    border-color: rgba(0, 245, 255, 0.4);
    background: rgba(0, 245, 255, 0.05);
    box-shadow:
        0 0 15px rgba(0, 245, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.option-card input:checked + .option-content {
    border-color: #00f5ff;
    background: rgba(0, 245, 255, 0.12);
    box-shadow:
        0 0 25px rgba(0, 245, 255, 0.3),
        0 0 50px rgba(0, 245, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 0 30px rgba(0, 245, 255, 0.1);
}

.option-card input:checked + .option-content i {
    color: #00f5ff;
}

.option-card.recommended .option-content {
    border-color: rgba(0, 245, 255, 0.3);
}

/* Contact Fields - Glassmorphic Inputs */
.contact-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-group.full {
    grid-column: 1 / -1;
}

.field-group label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.field-group input,
.field-group textarea,
.field-group select {
    padding: 1rem;
    background: rgba(10, 14, 26, 0.5);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
    outline: none;
    border-color: #00f5ff;
    background: rgba(10, 14, 26, 0.7);
    box-shadow:
        0 0 20px rgba(0, 245, 255, 0.3),
        0 0 40px rgba(0, 245, 255, 0.15),
        inset 0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(0, 245, 255, 0.05);
}

.field-group textarea {
    resize: vertical;
    min-height: 100px;
}

.field-group select {
    cursor: pointer;
}

/* Form Navigation */
.form-navigation {
    margin-top: 2rem;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00f5ff, #00a8b5);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-prev {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.btn-prev:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn-prev:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #00f5ff 0%, #00a8b5 100%);
    color: #0a0a0a;
    margin-left: auto;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.3);
}

/* Small Business Section - Glassmorphism */
.small-business-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 245, 255, 0.02) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sb-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sb-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    color: #8b5cf6;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.sb-text h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.sb-text > p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sb-benefits {
    list-style: none;
    padding: 0;
}

.sb-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.7);
}

.sb-benefits li i {
    color: #10b981;
    font-size: 0.9rem;
}

.sb-form-container {
    background: rgba(139, 92, 246, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 40px rgba(139, 92, 246, 0.08);
}

.sb-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.sb-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.sb-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.sb-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65); /* WCAG 2.1 AA compliant - 4.5:1 contrast ratio */
    margin-top: 0.5rem;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    text-align: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.05) 0%, transparent 50%);
}

.final-cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.final-cta > .container > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #00f5ff 0%, #00a8b5 100%);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.scarcity-note {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.scarcity-note strong {
    color: #00f5ff;
}

/* Footer */
.onboarding-footer {
    padding: 3rem 0 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.onboarding-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

.onboarding-footer .footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.3rem;
}

.onboarding-footer .footer-brand p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65); /* WCAG 2.1 AA compliant - 4.5:1 contrast ratio */
    margin: 0;
}

.onboarding-footer .footer-links {
    display: flex;
    gap: 2rem;
}

.onboarding-footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.onboarding-footer .footer-links a:hover {
    color: #00f5ff;
}

.onboarding-footer .footer-bottom {
    text-align: center;
}

.onboarding-footer .footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .roi-calculator {
        grid-template-columns: 1fr;
    }

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

    .option-grid.multi {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-categories {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .onboarding-nav {
        padding: 1rem 1.5rem;
    }

    .onboarding-nav .nav-logo h1 {
        font-size: 1rem;
    }

    .terminal-back-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .terminal-text {
        display: none;
    }

    .terminal-back-link::after {
        content: 'EXIT';
        letter-spacing: 0.05em;
    }

    .onboarding-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat .stat-value {
        font-size: 2rem;
    }

    .option-grid,
    .option-grid.multi {
        grid-template-columns: 1fr;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .nav-buttons {
        flex-direction: column;
    }

    .btn-next,
    .btn-submit {
        margin-left: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
