/* Live HIPAA Training Page Styles - CORRECTED VERSION */
/* Fixes: Full-width layout, responsive design, proper spacing */

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --light-blue: #f0f7ff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
}

/* Base Resets */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    overflow-x: hidden;
}

/* Container - FULL WIDTH FIX */
.live-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Sticky Alert Bar - FULL WIDTH FIX */
.live-alert-bar {
    background: var(--danger);
    color: white;
    padding: 12px 24px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    width: 100%;
    left: 0;
    right: 0;
}

.live-alert-seats {
    color: #fde047;
    font-size: 18px;
    font-weight: 700;
}

/* Hero Section */
.live-hero-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, #e0f2fe 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.live-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, #2563eb 0px, #2563eb 1px, transparent 1px, transparent 10px),
                      repeating-linear-gradient(90deg, #2563eb 0px, #2563eb 1px, transparent 1px, transparent 10px);
    opacity: 0.05;
    pointer-events: none;
}

.live-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.live-hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.live-avatar-group {
    display: flex;
    margin-left: -8px;
}

.live-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: 2px solid white;
    margin-left: -8px;
}

.live-hero-badge p {
    font-weight: 600;
    color: var(--gray-700);
    margin: 0;
}

.live-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.1;
    margin: 0 0 16px 0;
}

.live-hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.75rem);
    color: var(--gray-700);
    font-weight: 600;
    margin: 0 0 16px 0;
}

.live-hero-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--gray-600);
    margin: 0 0 32px 0;
}

.live-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.live-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    font-size: 14px;
}

.live-badge-icon {
    font-size: 20px;
}

.live-hero-cta {
    width: 100%;
    max-width: 400px;
    font-size: 1.125rem;
    padding: 18px 32px;
    animation: pulse-subtle 2s infinite;
}

@keyframes pulse-subtle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.live-hero-guarantee {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-600);
}

/* Instructor Card */
.live-instructor-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.live-instructor-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 4px solid var(--primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    display: block;
}

.live-instructor-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px 0;
}

.live-instructor-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0 0 24px 0;
}

.live-credentials {
    text-align: left;
    margin-bottom: 24px;
}

.live-credential {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
}

.live-check {
    color: var(--success);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.live-urgency-box {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 16px;
}

.live-urgency-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.live-urgency-row:last-child {
    margin-bottom: 0;
}

.live-urgency-value {
    font-weight: 700;
    color: var(--danger);
}

.live-urgency-seats {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--danger);
}

/* Stats Bar - FULL WIDTH FIX */
.live-stats-bar {
    background: var(--gray-50);
    padding: 48px 0;
    border-bottom: 1px solid var(--gray-200);
    width: 100%;
}

.live-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    text-align: center;
}

.live-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.live-stat-label {
    font-size: 14px;
    color: var(--gray-600);
}

/* Video Section */
.live-video-section {
    padding: 80px 0;
    background: white;
    width: 100%;
}

.live-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.live-video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Section Headers */
.live-section-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.live-section-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--gray-600);
    text-align: center;
    margin: 0 0 48px 0;
}

.live-section-header {
    text-align: center;
    margin-bottom: 48px;
}

/* Benefits Section */
.live-benefits-section {
    padding: 80px 0;
    background: var(--gray-50);
    width: 100%;
}

.live-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.live-benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.live-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.live-benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.live-benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 12px 0;
}

.live-benefit-card p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Agenda Section */
.live-agenda-section {
    padding: 80px 0;
    background: var(--gray-50);
    width: 100%;
}

.live-agenda-list {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.live-agenda-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    transition: background 0.2s ease;
}

.live-agenda-item:last-child {
    border-bottom: none;
}

.live-agenda-item:hover {
    background: var(--gray-50);
}

.live-agenda-time {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    min-width: 80px;
}

.live-agenda-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px 0;
}

.live-agenda-content p {
    color: var(--gray-600);
    margin: 0;
}

/* Pricing Section */
.live-pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, #dbeafe 100%);
    width: 100%;
}

.live-roi-banner {
    display: inline-block;
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 20px 32px;
    margin-bottom: 48px;
}

.live-roi-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: #991b1b;
    margin: 0 0 4px 0;
}

.live-roi-amount {
    font-size: 1.75rem;
}

.live-roi-subtext {
    font-size: 14px;
    color: #b91c1c;
    margin: 0;
}

.live-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.live-pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-200);
    position: relative;
    transition: all 0.3s ease;
}

.live-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.live-pricing-featured {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: var(--primary);
}

.live-pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    white-space: nowrap;
}

.live-pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.live-pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 16px 0;
}

.live-pricing-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.live-pricing-original {
    font-size: 1.5rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.live-pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.live-pricing-save {
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
    margin: 0;
}

.live-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.live-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.live-feature-check {
    color: var(--success);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.live-feature-bold {
    font-weight: 700;
    color: var(--primary-dark);
}

.live-pricing-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.125rem;
}

.live-pricing-btn-featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.live-pricing-guarantee {
    text-align: center;
    font-size: 14px;
    color: var(--gray-600);
    margin: 16px 0 0 0;
}

.live-pricing-footer {
    text-align: center;
    margin-top: 32px;
}

.live-pricing-footer p {
    margin: 8px 0;
    color: var(--gray-700);
}

.live-pricing-note {
    font-size: 14px;
    color: var(--gray-600);
}

.live-pricing-note a {
    color: var(--primary);
    text-decoration: none;
}

.live-pricing-note a:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.live-testimonials-section {
    padding: 80px 0;
    background: white;
    width: 100%;
}

.live-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.live-testimonial-card {
    background: var(--gray-50);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.live-testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.live-testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.live-testimonial-name {
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 4px 0;
}

.live-testimonial-role {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* FAQ Section */
.live-faq-section {
    padding: 80px 0;
    background: var(--gray-50);
    width: 100%;
}

.live-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.live-faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.live-faq-question {
    width: 100%;
    background: var(--gray-50);
    border: none;
    padding: 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.2s ease;
}

.live-faq-question:hover {
    background: var(--gray-100);
}

.live-faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.live-faq-item.active .live-faq-icon {
    transform: rotate(45deg);
}

.live-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.live-faq-item.active .live-faq-answer {
    max-height: 500px;
    padding: 24px;
}

.live-faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.live-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
    width: 100%;
}

.live-final-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0 0 16px 0;
}

.live-final-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin: 0 0 12px 0;
    opacity: 0.95;
}

.live-final-urgency {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin: 0 0 32px 0;
    opacity: 0.9;
}

.live-final-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.live-btn-yellow {
    background: #fbbf24 !important;
    color: var(--gray-900) !important;
}

.live-btn-yellow:hover {
    background: #f59e0b !important;
}

.live-final-guarantee {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
}

/* Checkout Section */
.live-checkout-section {
    padding: 80px 0;
    background: var(--gray-50);
    width: 100%;
}

.live-checkout-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 48px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.live-checkout-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin: 0 0 12px 0;
}

.live-checkout-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin: 0 0 32px 0;
}

.live-selected-package {
    font-weight: 700;
    color: var(--primary);
}

.live-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.live-form-group {
    margin-bottom: 20px;
}

.live-form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    font-size: 14px;
}

.live-form-group input,
.live-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background: white;
}

.live-form-group input:focus,
.live-form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Discount Code Input */
.live-discount-input-wrapper {
    display: flex;
    gap: 8px;
}

.live-discount-input-wrapper input {
    flex: 1;
    text-transform: uppercase;
}

.live-discount-apply-btn {
    padding: 14px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.live-discount-apply-btn:hover {
    background: var(--primary-dark);
}

.live-discount-feedback {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    min-height: 20px;
}

.live-discount-feedback.success {
    color: var(--success);
}

.live-discount-feedback.error {
    color: var(--danger);
}

/* Order Summary */
.live-order-summary {
    background: var(--light-blue);
    border: 2px solid #bfdbfe;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.live-order-summary h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 16px 0;
}

.live-order-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.live-discount-amount {
    color: var(--success);
    font-weight: 700;
}

.live-order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 2px solid #93c5fd;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.live-order-total span:last-child {
    color: var(--primary);
    font-size: 1.375rem;
}

/* Payment Element */
.live-payment-element {
    margin: 24px 0;
    padding: 20px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
}

/* Submit Button */
.live-submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.125rem;
    margin-top: 24px;
}

.live-checkout-footer {
    text-align: center;
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 20px;
}

/* Success Message */
.live-success-message {
    text-align: center;
    padding: 48px;
    background: var(--light-blue);
    border: 2px solid var(--primary);
    border-radius: 16px;
}

.live-success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.live-success-message h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 16px 0;
}

.live-success-message p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0 0 12px 0;
}

/* Exit-Intent Popups */
.live-exit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.live-exit-popup {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.live-exit-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gray-100);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-exit-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.live-exit-content {
    padding: 48px 32px;
}

.live-exit-icon {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 16px;
}

.live-exit-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin: 0 0 12px 0;
}

.live-exit-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    margin: 0 0 32px 0;
}

.live-exit-bonus-box {
    background: var(--light-blue);
    border: 2px solid #bfdbfe;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.live-exit-bonus-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 16px 0;
}

.live-exit-bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.live-exit-bonus-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-800);
}

.live-exit-urgency {
    background: #fef2f2;
    border-left: 4px solid var(--danger);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.live-exit-urgency p {
    color: #991b1b;
    font-weight: 600;
    margin: 0;
}

.live-exit-seats-count {
    font-size: 1.25rem;
    font-weight: 700;
}

.live-exit-cta {
    width: 100%;
    padding: 18px;
    font-size: 1.125rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

.live-exit-cta:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.live-exit-decline,
.live-exit-secondary {
    width: 100%;
    padding: 14px;
    background: white;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.live-exit-decline:hover,
.live-exit-secondary:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

.live-exit-guarantee {
    text-align: center;
    font-size: 14px;
    color: var(--gray-600);
    margin: 16px 0 0 0;
}

.live-exit-testimonial-box {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.live-exit-testimonial {
    margin-bottom: 20px;
}

.live-exit-testimonial:last-child {
    margin-bottom: 0;
}

.live-exit-quote {
    font-style: italic;
    color: var(--gray-700);
    margin: 0 0 8px 0;
}

.live-exit-author {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 600;
    margin: 0;
}

.live-exit-faq-preview {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.live-exit-faq-item {
    margin-bottom: 16px;
}

.live-exit-faq-item:last-child {
    margin-bottom: 0;
}

.live-exit-faq-item strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.live-exit-faq-item p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-white {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    text-align: center;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

/* Loading State */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (min-width: 768px) {
    .live-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .live-form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .live-pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .live-checkout-wrapper {
        padding: 48px;
    }
}

@media (max-width: 767px) {
    .live-hero-cta {
        width: 100%;
        max-width: none;
    }
    
    .live-final-buttons {
        flex-direction: column;
    }
    
    .live-final-buttons button {
        width: 100%;
    }
    
    .live-exit-content {
        padding: 32px 20px;
    }
    
    .live-agenda-item {
        flex-direction: column;
    }
    
    .live-agenda-time {
        min-width: auto;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .live-container {
        padding: 0 16px;
    }
    
    .live-hero-section,
    .live-stats-bar,
    .live-video-section,
    .live-benefits-section,
    .live-agenda-section,
    .live-pricing-section,
    .live-testimonials-section,
    .live-faq-section,
    .live-final-cta,
    .live-checkout-section {
        padding: 60px 0;
    }
}

/* Career Outcomes Section */
.live-career-outcomes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, #e0f2fe 100%);
    width: 100%;
}

.live-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.live-outcome-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.live-outcome-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.live-outcome-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.live-outcome-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-outcome-stat {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.live-outcome-desc {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.live-industries-hiring {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.live-industries-hiring h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 24px 0;
    text-align: center;
}

.live-industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.live-industry-tag {
    background: var(--light-blue);
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #bfdbfe;
    transition: all 0.2s ease;
}

.live-industry-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}