/* Common styles across all pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-attachment: fixed;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Page wrapper - zooms out */
.page-wrapper {
    transform: scale(0.67);
    transform-origin: top left;
    width: 149.25%;
}

/* Main content area */
.main-content {
    max-width: 95%;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 40px;
    align-items: start;
}

/* Content area */
.content-area {
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 102, 0, 0.08);
    position: relative;
}

.content-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 102, 0, 0.3) 50%, 
        transparent 100%);
}

.content-area h2 {
    color: #fff;
    margin-bottom: 28px;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
}

.content-area h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FF6600 0%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(255, 102, 0, 0.4);
}

.content-area p {
    line-height: 1.8;
    margin-bottom: 18px;
    color: #c0c0c0;
    font-size: 1.4rem;
    font-weight: 300;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 102, 0, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.sidebar-widget::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #FF6600 0%, transparent 100%);
    border-radius: 0 0 0 12px;
    box-shadow: 0 0 12px rgba(255, 102, 0, 0.4);
}

.sidebar-widget:hover {
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5),
                0 0 32px rgba(255, 102, 0, 0.08);
}

.sidebar-widget h3 {
    margin-bottom: 18px;
    color: #FF6600;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 12px rgba(255, 102, 0, 0.2);
}

.sidebar-widget p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1.4rem;
    font-weight: 300;
}

.sidebar-widget img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.sidebar-widget video {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.side-list, .news-list {
    list-style: none;
}

.side-list li, .news-list li {
    margin-bottom: 14px;
    position: relative;
}

.side-list a, .news-list a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    padding: 8px 12px;
    font-weight: 500;
    border-radius: 6px;
    position: relative;
    font-size: 1.4rem;
}

.side-list a::before, .news-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #FF6600;
    border-radius: 2px;
    transition: height 0.3s ease;
}

.side-list a:hover, .news-list a:hover {
    color: #FF6600;
    background: rgba(255, 102, 0, 0.05);
    padding-left: 16px;
}

.side-list a:hover::before, .news-list a:hover::before {
    height: 60%;
}

.side-list, .services-list {
    list-style: none;
}

.side-list li, .services-list li {
    margin-bottom: 7px;
    position: relative;
}

.side-list a, .services-list a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    padding: 8px 12px;
    font-weight: 500;
    border-radius: 6px;
    position: relative;
    font-size: 1.4rem;
}

.side-list a::before, .services-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #FF6600;
    border-radius: 2px;
    transition: height 0.3s ease;
}

.side-list a:hover, .services-list a:hover {
    color: #FF6600;
    background: rgba(255, 102, 0, 0.05);
    padding-left: 16px;
}

.side-list a:hover::before, .services-list a:hover::before {
    height: 60%;
}

.sidebar-widget[style*="background: #FF6600"] {
    border: 1px solid rgba(255, 102, 0, 0.4);
    box-shadow: 0 8px 32px rgba(255, 102, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sidebar-widget[style*="background: #FF6600"]::before {
    display: none;
}

/* Job listings iframe */
.job-frame-container {
    margin-top: 40px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 102, 0, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

#resumator-job-frame {
    width: 100%;
    min-height: 800px;
    border: none;
    background: #0a0a0a;
    border-radius: 8px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Spacer for fixed header */
.header-spacer {
    height: 100px;
}

/* ========================================
   UNIFIED BUTTON SYSTEM
   ======================================== */

.btn,
.button-container a,
.button-container button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.05em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
}

/* Primary buttons - orange fill */
.btn-primary,
.cta-primary,
.button-container a:not(.btn-secondary):not(.btn-rounded),
.button-container button:not(.btn-secondary):not(.btn-rounded) {
    background: linear-gradient(135deg, #FF6600 0%, #e55a00 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.25);
}

.btn-primary:hover,
.cta-primary:hover,
.button-container a:not(.btn-secondary):not(.btn-rounded):hover,
.button-container button:not(.btn-secondary):not(.btn-rounded):hover {
    background: linear-gradient(135deg, #ff7a1a 0%, #ff6600 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(255, 102, 0, 0.4),
                0 0 32px rgba(255, 102, 0, 0.2);
}

/* Secondary buttons - transparent with orange border */
.btn-secondary,
.cta-secondary,
.button-container .btn-secondary {
    background: rgba(255, 102, 0, 0.05) !important;
    color: #FF6600 !important;
    border: 2px solid rgba(255, 102, 0, 0.4) !important;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.cta-secondary:hover,
.button-container .btn-secondary:hover {
    background: rgba(255, 102, 0, 0.1) !important;
    border-color: #FF6600 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 102, 0, 0.15);
}

.btn-rounded {
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(234, 144, 102, 0.4);
}

.btn-rounded:hover {
    box-shadow: 0 8px 25px rgba(234, 172, 102, 0.4);
}

.btn-rounded:active {
    transform: translateY(-1px);
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 1rem;
}

.cta-container .cta-primary,
.cta-container .cta-secondary {
    width: 90%; 
    text-align: center;
}


/* Large Buttons */
.button-container .btn-large {
    padding: 22px 150px;
    font-size: 1.25em;
}



/* ========================================
   UNIFIED CARD SYSTEM
   ======================================== */

.card {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 102, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #FF6600 0%, transparent 100%);
    opacity: 0.6;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5),
                0 0 48px rgba(255, 102, 0, 0.12);
    border-color: rgba(255, 102, 0, 0.3);
}

.card:hover::before {
    opacity: 1;
    box-shadow: 0 0 16px rgba(255, 102, 0, 0.6);
}

.card h4 {
    color: #FF6600;
    margin-bottom: 16px;
    font-size: 1.25em;
    font-weight: 600;
}

.card p {
    font-size: 0.95em;
    color: #b0b0b0;
    line-height: 1.7;
}

/* ========================================
   UNIFIED FORM SYSTEM
   ======================================== */

.form-input,
.form-select,
input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 8px;
    background: #0f0f0f;
    color: #e0e0e0;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
    border-color: #FF6600;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-input:hover,
.form-select:hover,
select:hover {
    border-color: rgba(255, 102, 0, 0.4);
}

input[type="range"] {
    width: 100%;
    accent-color: #FF6600;
    height: 8px;
    cursor: pointer;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .main-content {
        max-width: 95%;
        padding: 40px 20px;
        gap: 30px;
    }
    
    .content-area {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        padding: 30px 16px;
    }
    
    .sidebar {
        order: 2;
        gap: 20px;
    }
    
    .content-area {
        order: 1;
        padding: 32px 24px;
    }
    
    .content-area h2 {
        font-size: 1.8rem;
    }
    
    .sidebar-widget {
        padding: 24px;
    }
    
    .button-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .button-container a,
    .button-container button,
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 20px 12px;
    }
    
    .content-area {
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .content-area h2 {
        font-size: 1.6rem;
    }
    
    .content-area p {
        font-size: 1.4rem;
    }
    
    .sidebar-widget {
        padding: 20px;
        border-radius: 10px;
    }
    
    .sidebar-widget h3 {
        font-size: 1.1rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-orange {
    color: #FF6600;
}

.text-glow {
    text-shadow: 0 2px 16px rgba(255, 102, 0, 0.3);
}

.mt-large {
    margin-top: 50px;
}

.mb-large {
    margin-bottom: 50px;
}

.card-glow {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 48px rgba(255, 102, 0, 0.12);
}

.smooth-transition {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #FF6600;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Downloadables */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #FF6600;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(234, 139, 102, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.5);
}

.download-btn:active {
    transform: translateY(0);
}

.download-icon {
    width: 16px;
    height: 16px;
}



.resource-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.resource-btn {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 102, 0, 0.2);
    padding: 32px 28px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.resource-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 102, 0, 0.6) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.resource-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-color: #FF6600;
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5),
                0 0 48px rgba(255, 102, 0, 0.15);
}

.resource-btn:hover::before {
    opacity: 1;
}

.resource-btn .icon {
    font-size: 2.8em;
    margin-bottom: 16px;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-btn .icon img {
    width: 40%;
    height: 40%;
    display: block;
}

.resource-btn:hover .icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.resource-btn .title {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FF6600;
}

.resource-btn .desc {
    font-size: 0.9em;
    color: #999;
    line-height: 1.5;
}

.resource-btn .title {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FF6600;
}

.resource-btn .desc {
    font-size: 0.9em;
    color: #999;
    line-height: 1.5;
}



/* ============================================================
   SIDEBAR — hide on mobile, show on desktop only
   ============================================================ */

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .main-content {
        grid-template-columns: 1fr;
    }

    .content-area {
        order: 1;
    }
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #c0c0c0;
    font-size: 1.5rem;
    font-weight: 300;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FF6600;
    font-size: 1.4rem;
    line-height: 1;
}



.benefit-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 50px;
        transition: 
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Hover effect */
.benefit-row:hover {
    background: linear-gradient(
        90deg,
        rgba(0, 153, 255, 0.18),
        rgba(0, 153, 255, 0.06)
    );
    border-radius: 14px;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.benefit-row {
    position: relative;
    padding: 2rem;
}

.benefit-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background-color: transparent;
    border-radius: 6px 0 0 6px;
    transition: background-color 0.3s ease;
}

.benefit-row:hover::before {
    background-color: #0099ff;
}

/* Text always on the left */
.benefit-text {
    flex: 1;
}

/* Image sizing */
.benefit-row img {
    width: 40%;
    height: auto;
}

/* Image on the RIGHT */
.benefit-row.image-right {
    flex-direction: row;
}

/* Image on the LEFT */
.benefit-row.image-left {
    flex-direction: row-reverse;
}

.benefits-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefits-header h2 {
    margin: 0;
}



.logo-card {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 102, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo-card:hover {
    transform: translateY(-8px) scale(1.03);
    /* box-shadow: 0 18px 40px rgba(255, 102, 0, 0.2); */
}

.logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}




/* Service Sections */
.service-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 102, 0, 0.08);
}

.service-section h2 {
    color: #fff;
    margin-bottom: 28px;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FF6600 0%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(255, 102, 0, 0.4);
}

.service-section h3 {
    color: #FF6600;
    margin-top: 32px;
    margin-bottom: 18px;
    font-size: 1.5em;
    font-weight: 600;
    text-shadow: 0 1px 12px rgba(255, 102, 0, 0.2);
}

.service-section p {
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 300;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin: 40px 0;
}


.image-container {
    width: 100%;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

.image-container img {
    width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}


.overview-image {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}




/* Testimonials */
.testimonial {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 36px;
    border-radius: 12px;
    border-left: 3px solid #FF6600;
    margin: 40px 0;
    font-style: italic;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4em;
    color: rgba(255, 102, 0, 0.15);
    font-family: Georgia, serif;
    line-height: 0.8;
}

.testimonial .quote {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.7;
    padding-left: 20px;
}

.testimonial .author {
    font-size: 0.95em;
    color: #FF6600;
    font-style: normal;
    font-weight: 600;
    padding-left: 20px;
    letter-spacing: 0.3px;
}


.cmmc-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 102, 0, 0.1);
}




/* Responsive */
@media (max-width: 768px) {
    .cmmc-hero {
        padding: 50px 24px;
    }
    
    .cmmc-hero h1 {
        font-size: 2em;
    }
    
    .service-section {
        padding: 32px 24px;
    }
    
    .service-section h2 {
        font-size: 1.8rem;
    }
    
    .calculator-sticky {
        padding: 24px;
    }
    
    .email-capture {
        padding: 36px 24px;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form input,
    .email-form button {
        width: 100%;
    }
}




/* CMMC Levels */
.cmmc-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.level-card {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 36px 28px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 102, 0, 0.5) 50%, 
        transparent 100%);
}

.level-card:hover {
    border-color: #FF6600;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
                0 0 56px rgba(255, 102, 0, 0.15);
}

.level-card .level-number {
    font-size: 3.5em;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6600 0%, #ff8833 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    text-shadow: 0 4px 24px rgba(255, 102, 0, 0.3);
}

.level-card .level-name {
    font-size: 1.15em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.level-card .level-desc {
    font-size: 0.9em;
    color: #999;
    line-height: 1.6;
}




/* Email Capture */
.email-capture {
    background: linear-gradient(135deg, #FF6600 0%, #e55a00 100%);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 8px 32px rgba(255, 102, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.email-capture h3 {
    color: #fff;
    font-size: 2.2em;
    margin-bottom: 16px;
    font-weight: 700;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.email-capture p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    font-size: 1.1em;
    font-weight: 300;
}

.email-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.email-form input:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
                0 0 0 3px rgba(255, 255, 255, 0.3);
}

.email-form button {
    padding: 16px 40px;
    background: #0a0a0a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.email-form button:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}



/* Team Section */
.team-container {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.team-member {
    border: 1px solid #e070258f;
    background: linear-gradient(135deg, #1d1d1d 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
                0 0 56px rgba(255, 102, 0, 0.15);
}

.team-member-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.team-member img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #FF6600;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
    flex-shrink: 0;
}

.team-member img[src*="dr-garcia"] {
    object-position: 90% 20%;
}

.team-member img[src*="rob-grimes"] {
    object-position: 70% center;
}

.team-member-info h3 {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-size: 1.5rem;
}

.team-member-info h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FF6600;
    margin-top: 0.5rem;
}

.team-member-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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