

body {
    font-family: 'Avenir', 'Inter', Arial, sans-serif;
    margin: 0;
    background: #fff;
    color: #222;
}


.diagonal-bg-wrapper {
    position: relative;
    overflow: hidden;
    background: #F5F5F0;
    min-height: 600px;
}

.diagonal-bg-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 20%, 0 60%);
    opacity: 0.9;
}

.vertical-lines {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1220px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.vertical-lines::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        to right,
        transparent 0%, transparent calc(var(--line1) - var(--vertical-line-thickness)),
        rgba(250, 127, 0, var(--vertical-line-alpha)) calc(var(--line1) - var(--vertical-line-thickness)), rgba(250, 127, 0, var(--vertical-line-alpha)) calc(var(--line1) + var(--vertical-line-thickness)), transparent calc(var(--line1) + var(--vertical-line-thickness)),
        transparent calc(var(--line2) - var(--vertical-line-thickness)),
        rgba(250, 127, 0, var(--vertical-line-alpha)) calc(var(--line2) - var(--vertical-line-thickness)), rgba(250, 127, 0, var(--vertical-line-alpha)) calc(var(--line2) + var(--vertical-line-thickness)), transparent calc(var(--line2) + var(--vertical-line-thickness)),
        transparent calc(var(--line3) - var(--vertical-line-thickness)),
        rgba(250, 127, 0, var(--vertical-line-alpha)) calc(var(--line3) - var(--vertical-line-thickness)), rgba(250, 127, 0, var(--vertical-line-alpha)) calc(var(--line3) + var(--vertical-line-thickness)), transparent calc(var(--line3) + var(--vertical-line-thickness)),
        transparent calc(var(--line4) - var(--vertical-line-thickness)),
        rgba(250, 127, 0, var(--vertical-line-alpha)) calc(var(--line4) - var(--vertical-line-thickness)), rgba(250, 127, 0, var(--vertical-line-alpha)) calc(var(--line4) + var(--vertical-line-thickness)), transparent calc(var(--line4) + var(--vertical-line-thickness))
    );
}


.hero-wrapper {
    width: 100%;
    display:flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero-section {
    display: flex;
    gap: 20px;
    margin:20px;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    z-index: 10;
    position: relative;

}

.hero-left {
    flex: 2.05;
    margin-right: 0px;
    margin-top: 130px !important;
    min-width: 0;
}

.hero-left h1 {
    font-size: var(--font-xxl);
    font-weight: 400;
    margin: 0 0 40px 0;
    line-height: 1.1;
}

.hero-left .highlight {
    background: linear-gradient(to right, #FE5300, #FE8400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4.8rem;
    font-weight: 700;
    display: block;
    margin-top: 10px;
}

.subtitle {
    font-size: var(--font-l);
    margin-bottom: 50px !important;
    color: var(--darkgrey);
    width: 600px;
    line-height: 1.4;
}

.solid-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: var(--font-xs);
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 40px;
    margin-top: 8px;
}

.empty-btn {
    background: white;
    color: black;
    padding: 12px 18px;
    border-radius: 6px;
    border: 1px solid black;
    font-size: var(--font-xs);
    font-weight: 400;
    text-decoration: none;
}



.company-logos {
    width: 100%;
    background-color: var(--creme);
    overflow: hidden;
    margin-top: 50px;
    padding: 10px 0;
    position: relative;
    z-index: 2;
}


.logo-scroll {
    display: flex;
    align-items: center;
    gap: 53px;
    animation: scroll-left 20s linear infinite;
    width: max-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 26.5px));
    }
}

.company-logos img {
    height: 35px;
    width: auto;
    filter: grayscale(100%) brightness(0) contrast(1000%);
    opacity: 1;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.company-logos img:hover {
    opacity: 0.7;
}

/* Individual logo size adjustments */
.logo-citadel {
    height: 20px !important;
}

.logo-jane-street {
    height: 40px !important;
}

.logo-goldman {
    height: 40px !important;
}

.logo-optiver {
    height: 25px !important;
}

.logo-akuna {
    height: 50px !important;
}

.logo-maven {
    height: 25px !important;
}

.hero-right {
    flex: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.profile-card {
    margin-top: 80px;
    background: hsl(0, 0%, 100%);
    border-radius: 10px;
    border-top: 6px solid var(--lightorange);
    box-shadow: 0 0 100px rgba(215,95,0,0.25);
    padding:40px 32px 40px 32px;
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    width: 270px;
    height: 365px;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 3px solid var(--lightorange);
    box-shadow: 
        0 0 0 8px rgba(254, 132, 0, 0.1),
        0 0 0 16px rgba(254, 132, 0, 0.07);
}

.profile-card h2 {
    font-size: var(--font-l);
    font-weight: 500;
    margin: 15px 0px 0px 0px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-badge {
    background: #ff7a00;
    color: #fff;
    font-size: var(--font-xs);
    border-radius: 5px;
    padding: 2px 5px;
    font-weight: 500;
}

.profile-title {
    color: var(--lightgray);
    font-size: var(--font-l);
    font-weight: 400;
    margin: 5px 0px 30px 0px;
}

.profile-company {
    background: rgba(254, 132, 0, 0.07);
    color: var(--lightgray);
    font-weight: 400;
    border-radius:100px;
    padding: 7px 18px;
    margin-bottom: 22px;
    font-size: var(--font-xs);
}

.company-highlight {
    font-weight: 500;
    color: var(--lightorange)
}


@media (max-width: 1000px) {
    .hero-section {
        flex-direction: column;
        align-items: stretch;
        padding: 40px 16px 0 16px;
    }
    .hero-left {
        margin-right: 0;
    }
    .hero-right {
        margin-top: 40px;
    }
    .company-logos {
        gap: 16px;
        margin-top: 32px;
    }
} 

/* Roadmap Section */
.roadmap-section {
    display: flex;
    background: #F5F5F0;
    position: relative;
    padding: 120px 0 0 0;
}

.roadmap-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
    z-index: 0;
}
.disclaimer {
    display: flex;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.university-logos-section {
    width: 100%;
    background-color: var(--creme);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.university-logos-section .vertical-lines {
    z-index: 1;
}

.logo-section-title {
    text-align: center;
    background-color: var(--creme);
    padding: 20px 0px 60px 0px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.logo-section-title h2 {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--darkgrey);
    margin: 0;
}

.logo-section-content {
    width: 80%;
    max-width:1000px;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    z-index: 2;
    background-color: var(--creme);
    margin-left: auto;
    margin-right: auto;
}


.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-logo {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(0.7) contrast(2.5);
    opacity: 1;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.section-logo:hover {
    opacity: 0.7;
}

.logo-eth {
    height: 25px !important;
}

.logo-caltech {
    height: 40px !important;
}

.logo-oxford {
    height: 45px;
}
.logo-cambridge {
    height: 30px !important;
}

.logo-mit {
    height: 40px !important;
}

.logo-harvard {
    height: 40px !important;
}

.logo-nts {
    height: 40px;
}

.logo-iit {
    height: 60px;
}



.roadmap-content {
    width: 100%;
    padding: 60px 0px;
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roadmap-title {
    text-align: center;
    font-size: var(--font-xl);
    font-weight: 700;
    margin-bottom: 80px;
    margin-top: 40px;
    color: var(--darkgrey);
}

.highlight {
    color: var(--lightorange);
}

.clickable-stat a {
    color: var(--lightorange);
    text-decoration: underline;
    transition: text-decoration 0.2s ease;
}

.clickable-stat a:hover {
    text-decoration: underline;
}

.roadmap-blocks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1230px;
    margin-bottom: 40px;
}

.roadmap-block {
    background: white;
    padding: 0px 0px 0px 15px;
    border-radius: 0px;
    position: relative;
    border-left: 4px solid var(--lightorange);
    flex: 1;
    margin: 0 15px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: top;
}

.roadmap-block h3 {
    font-size: var(--font-l);
    font-weight: 600;
    margin: 0 0 15px 0;
    color: var(--darkgrey);
}

.roadmap-block p {
    font-size: var(--font-s);
    line-height: 1.5;
    color: var(--darkgrey);
    margin: 0;
}

.roadmap-block .highlight {
    color: var(--lightorange);
    font-weight: 600;
}

@media (max-width: 1000px) {
    .roadmap-blocks {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .roadmap-block {
        margin: 0;
        height: auto;
        min-height: 120px;
    }
    
    .roadmap-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .roadmap-blocks {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .roadmap-block {
        margin: 0;
        height: auto;
        min-height: 100px;
        padding: 20px 15px;
    }
    
    /* Right-align 2nd and 4th blocks with right border */
    .roadmap-block:nth-child(2),
    .roadmap-block:nth-child(4) {
        text-align: right;
        border-left: none;
        border-right: 4px solid var(--lightorange);
        padding: 20px 15px 20px 0px;
    }
    
    .roadmap-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
} 

/* Company Packs Section */
.company-packs-section {
    background: white;
    position: relative;
    overflow: hidden;
    padding: 0px 0px;
    min-height: 550px;
}

.company-packs-content {
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    /* align-items: flex-start; */
    overflow: visible;
    margin-top: 50px;
    /* margin-bottom: 70px; */
    justify-content: space-between;
}
.roadmap-section {
    padding: 60px 0 0 0;
}

.company-packs-left {
    flex: 1;
    max-width: 400px;
}

.company-packs-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 0px;
    object-fit: contain;
}

.company-packs-title {
    font-size: var(--font-xl);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 0px;
    color: var(--darkgrey);
}

.company-packs-description {
    font-size: var(--font-m);
    line-height: 1.6;
    color: var(--darkgrey);
}

.company-packs-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--darkgrey);
    text-decoration: none;
    font-size: var(--font-s);
    transition: all 0.3s ease;
    position: relative;
    padding: 0px 0px 0px 14px !important;
    border-radius: 25px;
    margin-left: -14px;
    margin-top: 20px;
    overflow: visible;
    z-index: 2 !important;
}


.company-packs-link .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--lightorange);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.company-packs-link span {
    position: relative;
    z-index: 3;
}

.company-packs-link:hover {
    color: white;
}

.company-packs-link:hover .arrow {
    background-color: var(--lightorange);
}

.company-packs-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 15px;
    bottom: 0;
    background-color: var(--lightorange);
    border-radius: 25px 0 0 25px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: 1;
    overflow: visible;
}

.company-packs-link:hover::before {
    transform: scaleX(1);
    transform-origin: right;
}

.company-packs-right {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    flex: 0.5;
}

.interactive-test {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 100px rgba(215, 95, 0, 0.25);
    padding: 20px 40px;
    width: 90%;
    max-width: 350px;
    margin-top: 60px;
    z-index: 1;
    border-top: 4px solid var(--lightorange);
    position: relative;
}


.test-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
}

.test-footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
}

.test-progress {
    font-size: var(--font-xs);
    font-weight: 500;
    color: black;
}

.test-timer {
    font-size: var(--font-xs);
    color: var(--lightorange);
    font-weight: 500;
}

.test-question {
    font-size: 1.75rem;
    text-align: center;
    margin: 30px 0;
    font-weight: 500;
}

.test-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.test-option {
    flex: 1;
    padding: 25px 10px;
    border: 1px solid var(--lightorange);
    border-radius: 8px;
    background-color: white;
    color: var(--lightorange);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.test-option:hover {
    background-color: var(--lightorange);
    color: white;
}

.test-option.selected {
    background-color: var(--lightorange);
    color: white;
}

.test-option.correct {
    background-color: #CFFFDD;
    border-color: #08A800;
    color: #08A800;
}

.test-option.wrong {
    background-color: #FFD3D6;
    border-color: #dc3545;
    color: #dc3545;
}



.test-score {
    font-size: var(--font-xs);
    color: black;
    font-weight:500;
}

.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    z-index: 10;
}

.countdown-number {
    font-size: 5rem;
    font-weight: bold;
    color: var(--lightorange);
    animation: countdown-pulse 0.5s ease-in-out;
    padding: 20px 40px;
    border-radius: 10px;
}

.test-content {
    transition: filter 0.3s ease;
}

.test-content.blurred {
    filter: blur(6px);
}

@keyframes countdown-pulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.test-results {
    max-width: 350px;
}

.results-header h3 {
    margin: 0px 0px -10px 0px;
    color: var(--darkgray);
    font-size: var(--font-m);
}

.final-score {
    font-size: var(--font-s);
    font-weight: 600;
    color: var(--lightorange);
    margin-bottom: 20px;
}

.results-graph {
    margin: 0px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    width: 100%;
}

.results-graph canvas {
    display: block;
    margin: 0 auto;
}

.results-feedback {
    margin-top: 0px;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
}

.results-feedback p {
    margin: 0;
    color: var(--darkgray);
    font-size: 14px;
    line-height: 1.4;
}

.results-feedback a {
    color: #FE8400;
    text-decoration: none;
    font-weight: 600;
}

.results-feedback a:hover {
    text-decoration: underline;
}

.results-summary {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: -10px;
}

.summary-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.summary-label {
    font-size: var(--font-xs);
    color: #666;
}

.summary-value {
    font-size: var(--font-xs);
    font-weight: 600;
    color: var(--lightorange);
}

.applications-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.applications-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: var(--font-m);
    color: var(--darkgray);
}

.applications-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--lightorange);
    font-size: var(--font-m);
    font-weight: bold;
}

.company-packs-right img[src*="applications-feature"] {
    width: 150%;
    height: auto;
    display: block;
    margin: 0 auto;
    z-index: 1;
    filter: drop-shadow(0 0 50px rgba(215, 95, 0, 0.25));
}

.testimonials-section {
    position: relative;
    padding: 80px 0;
    background-color: white;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-title {
    background-color: white;
    z-index: 2;
    width: fit-content;
    margin: 0 auto 60px auto;
    padding: 20px 60px;
    position: relative;
    border: 1px solid rgba(250, 127, 0, var(--vertical-line-alpha));
}

.testimonials-title h2 {
    text-align: center;
    font-size: var(--font-xl);
    font-weight: 500;
    margin: 0;
    color: var(--darkgrey);
}

.testimonials-title .highlight {
    color: var(--lightorange);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.testimonial-card {
    position: relative;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(215,95,0,0.25);
    overflow:hidden;
    padding:25px;
}

/* .testimonial-card {
    position: relative;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
} */

/* .testimonial-silky-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: 0;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #FEA120, white, #FEA120);
} */

/* .testimonial-content {
    position: relative;
    z-index: 1;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 5px;
} */

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* .testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
} */

.testimonial-name {
    font-size: var(--font-m);
    font-weight: 500;
    /* color: var(--darkgray); */
    color: var(--star);
    /* margin: 0 5px 0 0; */
    margin: 0 10px 0 0;
    display: inline-block;
}

/* .testimonial-background {
    font-size: var(--font-xs);
    color: #666;
    margin: 0;
} */

.testimonial-quote {
    font-size: var(--font-xs);
    line-height: 1.6;
    color: var(--darkgray);
    margin-bottom: 20px;
    font-style: italic;
}

/* .testimonial-outcome {
    font-size: var(--font-s);
    font-weight: 500;
    color: black;
    display: flex;
    justify-content: center;
    font-style: italic;
} */

.company-packs-grid {
    flex: 1;
    display: flex;
    /* padding: 0px 50px; */
    flex-direction: column;
    align-content: center;
    gap: 30px;
    max-width: 500px;
    margin-top: 90px;
}

.top-row {
    display: flex;
    justify-content: center;
}

.bottom-row {
    display: flex;
    gap:30px;
    justify-content: space-between;
}

.company-card {
    position: relative;
    width: 240px;
    height: 110px;
    border-radius: 12px;
    overflow: visible;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.company-card:hover {
    box-shadow: 0 0 20px rgba(215, 95, 0, 0.8);
}

.company-card-bottom {
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.company-card-bg-bottom {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-card-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
}

.company-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.company-card-bg[style*="jane_street_office"] {
    background-position: center top;
}

.company-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.optiver-office {
    background: rgba(0, 0, 0, 0.6);
}
.goldman-office {
    background: rgba(0, 0, 0, 0.1);
}

.company-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    height: 43px;
    width: auto;
    filter: brightness(0) invert(1);
    z-index: 3;
}

.company-card-bottom-row {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.company-card-text {
    color: white;
    font-size: var(--font-s);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.company-card .company-logo[alt="Optiver"] {
    height: 30px;
}

.company-card-btn {
    background: linear-gradient(135deg, #FDE0AC 0%, #F5B351 100%);
    font-family: "Avenir";
    color: #674329;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 550;
    cursor: pointer;
    transition: background 0.2s;
}


/* Brainteasers Preview Section */
.brainteasers-preview {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 100px rgba(215,95,0,0.25);
    padding: 25px;
    margin-top: 20px;
    width: 90%;
    margin-left: auto;
    /* margin-right: 0; */
    overflow: visible;
    z-index: 1;
}


.brainteasers-table {
    overflow-x: auto;
}

.brainteasers-table h2{
    font-weight: 500;
    margin-top: 0px;
}

.brainteasers-table table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: var(--font-xs);
}

.brainteasers-table th,
.brainteasers-table td {
    padding: 8px 6px;
    text-align: center;
}

.brainteasers-table th {
    background-color: white;
    border-bottom: 1px solid #ddd;
    font-weight: 300;
    color: #737373;
    font-size: 12px;
    text-transform: uppercase;
}

.brainteasers-table td {
    color: var(--darkgrey);
    border: none;
}

.brainteasers-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.brainteasers-table tr:nth-child(odd) {
    background-color: white;
}

.brainteasers-table tbody tr:hover {
    background-color: #f5f5f5;
    cursor: pointer;
}

.brainteasers-table th:nth-child(1) {
    width: 10%;
}

.brainteasers-table th:nth-child(2) {
    width: 45%;
}

.brainteasers-table th:nth-child(3) {
    width: 45%;
} 

/* Footer vertical lines for landing page only */
footer {
    margin-top: 0px;
}




@media (max-width: 1000px) {
    .company-packs-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .company-packs-left {
        max-width: 100%;
    }
    
    .company-packs-grid {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .top-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .bottom-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .company-card {
        height: 110px;
    }
    
    .company-packs-title {
        font-size: 2rem;
    }

    .company-packs-grid {
        margin-top: 20px;
        align-items: center;
    }
    .bottom-row{
        gap: 30px;
    }
    
    .hero-left {
        margin-top: 0px!important;
    }

    .hero-left .highlight {
        font-size: 4.2rem;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }
    .subtitle{
        width: auto;
        font-size: var(--font-s);
    }
    .diagonal-bg-wrapper::before {
        clip-path: polygon(0 0, 100% 0, 100% 10%, 0 30%);
    }
    .interactive-test {
        margin-top: 0px;
    }
    .test-option {
        padding: 18px 10px;
    }
    .company-packs-right {
        margin-bottom: 50px;
    }
    
    .brainteasers-preview {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 20px;
        box-shadow: 0 0 50px rgba(215,95,0,0.25);
    }

    .company-packs-right img[src*="applications-feature"] {
        filter: drop-shadow(0 0 20px rgba(215, 95, 0, 0.25));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card {
        margin-top: 0px !important;
        position: relative;
        z-index: 1000;
    }
}

