/* Critical CSS - Clean Premium Design - Mobile-First */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Clean Modern Color Palette */
    --primary: #0f172a;
    /* Dark slate - Main text */
    --primary-light: #475569;
    /* Medium slate */
    --secondary: #f97316;
    /* Vibrant Orange - CTA */
    --secondary-dark: #ea580c;
    /* Darker Orange */
    --secondary-light: #fed7aa;
    /* Light peach/orange - Subtle accents */
    --accent: #fb923c;
    /* Medium Orange */

    --success: #10b981;
    /* Green */
    --error: #ef4444;
    /* Red */
    --warning: #f59e0b;
    /* Amber */

    --text: #0f172a;
    /* Dark slate */
    --text-light: #64748b;
    /* Slate gray */
    --text-muted: #94a3b8;
    /* Light slate */

    --bg: #ffffff;
    /* Pure white */
    --bg-light: #f8fafc;
    /* Very light gray */
    --bg-soft: #f1f5f9;
    /* Soft gray */

    --border: #e2e8f0;
    /* Light border */
    --border-light: #f1f5f9;
    /* Very light border */

    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky CTA - Orange Gradient */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(249, 115, 22, 0.3);
    z-index: 1000;
    display: block;
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* Buttons - Orange Primary */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 12px;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 8px;
}

/* Hero Section - Clean White Premium */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    color: #0f172a;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316 0%, #fb923c 50%, #fdba74 100%);
}

.hero>.container {
    position: relative;
    z-index: 1;
}

.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #0f172a;
}

.highlight {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 35px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: white;
    padding: 18px;
    border-radius: 12px;
    font-size: 14px;
    border: 2px solid #f1f5f9;
    color: #0f172a;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.icon {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

.hero-cta {
    margin-top: 40px;
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* Sections - Clean White Design */
.section {
    padding: 80px 0;
    background: white;
}

.section:nth-child(even) {
    background: var(--bg-light);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text);
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Pain & Promise */
.pain-promise {
    background: var(--bg-light);
}

.pain-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .pain-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pain-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-light);
}

.pain-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 700;
}

.pain-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.promise-box {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
}

.promise-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 800;
}

.promise-box p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Outcomes */
.outcomes-grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.outcome-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-light);
}

.outcome-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.outcome-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 700;
}

.outcome-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Curriculum - Subtle Light Orange Headers */
.curriculum {
    background: white;
}

.curriculum-modules {
    display: grid;
    gap: 25px;
}

.module {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.module:hover {
    box-shadow: var(--shadow-lg);
}

.module-header {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: #9a3412;
    padding: 25px;
    border-bottom: 2px solid var(--secondary-light);
}

.module-number {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-header h3 {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
    color: #7c2d12;
}

.module-topics {
    list-style: none;
    padding: 25px;
}

.module-topics li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
    font-size: 15px;
}

.module-topics li:last-child {
    border-bottom: none;
}

.module-topics li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

/* Who For */
.who-grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    .who-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

.who-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.who-card.perfect {
    border-left: 5px solid var(--success);
    background: linear-gradient(135deg, #ecfdf5 0%, white 100%);
}

.who-card.not-for {
    border-left: 5px solid var(--error);
    background: linear-gradient(135deg, #fef2f2 0%, white 100%);
}

.who-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.who-card ul {
    list-style: none;
}

.who-card li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.who-card li:before {
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

.who-card.perfect li:before {
    content: "✓";
    color: var(--success);
}

.who-card.not-for li:before {
    content: "✗";
    color: var(--error);
}

/* Instructor */
.instructor-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
    .instructor-card {
        flex-direction: row;
        align-items: center;
    }
}

.placeholder-avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
}

.instructor-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.credential {
    background: var(--bg-light);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    border: 1px solid var(--secondary-light);
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--text);
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 14px;
}

/* Bonuses - Subtle Orange Border */
.bonus-grid {
    display: grid;
    gap: 25px;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bonus-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--secondary-light);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 700;
}

.bonus-value {
    display: block;
    margin-top: 15px;
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
}

/* FAQ */
.faq {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text);
}

.faq-toggle {
    font-size: 24px;
    color: var(--secondary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 22px 22px;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Guarantee/Terms Box */
.guarantee-box {
    background: white;
    padding: 45px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 3px solid var(--secondary);
}

.guarantee-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.guarantee-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 800;
}

.guarantee-box p {
    line-height: 1.7;
    color: var(--text-light);
}

.guarantee-box ul {
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.8;
}

.guarantee-note {
    margin-top: 20px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 17px;
}

/* Enrollment Form */
.enrollment-form {
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 15px;
}

.urgency-text {
    color: var(--error);
    font-weight: 700;
    margin: 15px 0;
    font-size: 16px;
}

.price-display {
    background: linear-gradient(135deg, #fff7ed 0%, white 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid var(--secondary-light);
}

.price-label {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
}

.price-amount {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin: 12px 0;
}

.price-note {
    font-size: 14px;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.error-message {
    display: block;
    color: var(--error);
    font-size: 14px;
    margin-top: 6px;
    font-weight: 500;
}

.alert {
    padding: 16px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    gap: 35px;
    margin-bottom: 35px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h4 {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-light);
}

.footer-section p,
.footer-section a {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--secondary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}



/* Admin Styles */
.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-soft) 100%);
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 45px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.login-container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text);
}

.login-form input {
    margin-bottom: 15px;
}

.admin-wrapper {
    min-height: 100vh;
    background: var(--bg-light);
}

.admin-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 20px 50px;
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.2);
}

.admin-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    max-width: 1400px;
}

.admin-header h1 {
    font-size: 24px;
    font-weight: 700;
}

.admin-nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.admin-nav a:hover {
    opacity: 0.8;
}

.admin-main {
    padding: 50px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-label {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-filters {
    background: white;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.filter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-form input,
.filter-form select {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
}

.admin-table-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow-x: auto;
    border: 1px solid var(--border-light);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.admin-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tr:hover {
    background: var(--bg-light);
}

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-enrolled {
    background: #d1fae5;
    color: #065f46;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-failed {
    background: #fee2e2;
    color: #991b1b;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
}

.pagination-info {
    color: var(--text-light);
    font-weight: 500;
}

.text-center {
    text-align: center;
    padding: 30px;
    color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero {
        padding: 60px 0 70px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .result-page {
        padding: 30px 20px;
        margin: 20px auto;
    }

    .result-icon {
        font-size: 70px;
    }

    .result-page h1 {
        font-size: 26px;
    }

    .detail-card {
        padding: 14px;
    }

    .detail-value {
        font-size: 14px;
    }

    .next-steps {
        text-align: left;
        font-size: 14px;
        padding: 20px;
    }

    .next-steps ul {
        padding-left: 20px;
        font-size: 14px;
    }

    .support-box {
        padding: 20px;
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    body {
        padding-bottom: 0px;
        /* Space for sticky CTA */
    }

    .hero-features {
        gap: 12px;
    }

    .feature-item {
        padding: 15px;
    }

    .admin-header h1 {
        font-size: 18px;
    }

    .filter-form {
        flex-direction: column;
    }

    .filter-form input,
    .filter-form select {
        width: 100%;
    }
}



/* ====================================
   RESULT/SUCCESS PAGE - CLEAN DESIGN
   ==================================== */

.result-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.result-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.result-page {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    text-align: center;
}

/* Success Icon */
.result-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.result-icon.success {
    color: var(--success);
}

.result-icon.error {
    color: var(--error);
}

/* Headings */
.result-page h1 {
    font-size: 32px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.result-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.result-message {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Batch Details Box */
.batch-details-box {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 2px solid var(--secondary-light);
    border-radius: 12px;
    padding: 24px;
    margin: 30px 0;
    text-align: left;
}

.batch-details-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #9a3412;
    margin-bottom: 16px;
    text-align: center;
}

.batch-info-grid {
    display: grid;
    gap: 12px;
}

.batch-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.batch-info-item:last-child {
    border-bottom: none;
}

.batch-label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 14px;
}

.batch-value {
    font-weight: 700;
    color: var(--text);
    font-size: 14px;
    text-align: right;
}

/* Next Steps & Info Boxes */
.next-steps-box {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.next-steps-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.next-steps-box p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.next-steps-box ul {
    list-style: none;
    padding-left: 0;
    margin: 12px 0 0 0;
}

.next-steps-box li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.next-steps-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Email Issues Section */
.email-issues {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.email-issues p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Support Box */
.support-box {
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.support-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.support-box p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* ====================================
   MOBILE RESPONSIVE (< 768px)
   ==================================== */

@media (max-width: 767px) {
    .result-wrapper {
        padding: 20px 12px;
        min-height: auto;
    }

    .result-page {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .result-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .result-page h1 {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .result-subtitle {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .result-message {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .batch-details-box {
        padding: 18px 16px;
        margin: 24px 0;
    }

    .batch-details-box h3 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .batch-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 0;
    }

    .batch-label {
        font-size: 12px;
    }

    .batch-value {
        font-size: 13px;
        text-align: left;
        word-break: break-all;
    }

    .next-steps-box,
    .support-box {
        padding: 16px;
        margin: 16px 0;
    }

    .next-steps-box h3,
    .support-box h4 {
        font-size: 15px;
    }

    .next-steps-box p,
    .next-steps-box li,
    .support-box p {
        font-size: 13px;
    }

    .email-issues p {
        font-size: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 24px;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}