/* Waitlist Page Specific Styles */
.waitlist-hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f8fafd 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
}

.waitlist-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 187, 255, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.waitlist-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.waitlist-hero .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #00bbff;
}

.waitlist-hero .hero-text h2 {
    font-size: 2rem;
    color: #00bbff;
    margin-bottom: 2rem;
    font-weight: 600;
}

.waitlist-hero .hero-text p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
}

.stat-item h3 {
    font-size: 2rem;
    color: #00bbff;
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.waitlist-hero .hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-3deg);
    transition: all 0.5s ease;
}

.waitlist-hero .hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.waitlist-form-section {
    padding: 120px 0;
    background: white;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #f8fafd;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0ff;
}

.waitlist-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.waitlist-form .form-group {
    margin-bottom: 25px;
}

.waitlist-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #00bbff;
    font-size: 1rem;
}

.waitlist-form .form-group input,
.waitlist-form .form-group select {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.waitlist-form .form-group input:focus,
.waitlist-form .form-group select:focus {
    outline: none;
    border-color: #00bbff;
    box-shadow: 0 0 0 3px rgba(0, 187, 255, 0.2);
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.checkbox-container input {
    margin-right: 12px;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: #00bbff;
}

.checkbox-container a {
    color: #00bbff;
    text-decoration: underline;
}

.checkbox-container a:hover {
    color: #0099cc;
}

.waitlist-submit {
    width: 100%;
    margin-top: 20px;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: lowercase;
    background: #00bbff;
    color: white;
    border: 2px solid #00bbff;
}

.benefits-section {
    padding: 120px 0;
    background: #f8fafd;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #e6f0ff;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #00bbff;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #00bbff;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #00bbff;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.timeline-section {
    padding: 120px 0;
    background: white;
}

.timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e6f0ff;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00bbff;
    top: 20px;
    left: 50%;
    margin-left: -10px;
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(0, 187, 255, 0.2);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #e6f0ff;
}

.timeline-content h3 {
    color: #00bbff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content .date {
    font-weight: 600;
    color: #00bbff;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.timeline-content .description {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.faq-section {
    padding: 120px 0;
    background: #f8fafd;
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #001a33;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f8ff;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #00bbff;
}

.faq-question i.rotate {
    transform: rotate(180deg);
}

.faq-answer {
    background: white;
    padding: 0 25px;
    display: none;
    border-top: 1px solid #e6f0ff;
}

.faq-answer p {
    padding: 20px 0;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #00bbff 0%, #00bbff 100%);
    color: white;
    text-align: center;
}

.final-cta .section-header h2,
.final-cta .section-header p {
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.final-cta .cta-button {
    background: white;
    color: #00bbff;
}

.final-cta .cta-button:hover {
    background: #f0f8ff;
    transform: translateY(-5px) scale(1.05);
}

.waitlist-submit:hover {
    background: #0099cc;
    border-color: #0099cc;
    transform: translateY(-3px);
}

/* Custom Select Styles for Waitlist */
.interest-box,
.referral-box {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
    appearance: none;
    padding-right: 50px;
}

/* Custom Referral Dropdown with Icons */
.custom-referral-dropdown {
    position: relative;
    width: 100%;
}

.custom-referral-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.custom-referral-option {
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.custom-referral-option:last-child {
    border-bottom: none;
}

.custom-referral-option:hover {
    background-color: #f8f9ff;
}

.custom-referral-option.selected {
    background-color: #e6f0ff;
}

.referral-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.referral-text {
    font-size: 1rem;
    color: #333;
}

/* Active state for referral dropdown */
#referralDisplay.active {
    border-color: #00bbff;
    box-shadow: 0 0 0 3px rgba(0, 187, 255, 0.2);
}

/* Selected option styling */
.custom-referral-option.selected .referral-text {
    font-weight: 600;
    color: #00bbff;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet Breakpoint (768px) */
@media screen and (max-width: 1024px) {
    .waitlist-hero {
        padding: 140px 0 80px;
    }

    .waitlist-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .waitlist-hero .hero-text h1 {
        font-size: 2.8rem;
    }

    .waitlist-hero .hero-text h2 {
        font-size: 1.6rem;
    }

    .waitlist-hero .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .waitlist-hero .hero-image {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }

    .waitlist-hero .hero-image:hover {
        transform: none;
    }

    .waitlist-form-section {
        padding: 80px 0;
    }

    .form-container {
        padding: 40px 35px;
    }

    .benefits-section {
        padding: 80px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .timeline-section {
        padding: 80px 0;
    }

    .faq-section {
        padding: 80px 0;
    }

    .faq-container {
        margin-top: 40px;
    }

    .final-cta {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    /* Mission section tablet */
    .company-mission-waitlist {
        padding: 60px 0 !important;
    }

    .company-mission-waitlist .mission-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-top: 30px !important;
    }

    .company-mission-waitlist .mission-text {
        order: 2;
    }

    .company-mission-waitlist .mission-image {
        order: 1;
    }

    .company-mission-waitlist .section-header h2 {
        font-size: 2rem !important;
    }
}

/* Mobile Landscape Breakpoint (600px) */
@media screen and (max-width: 768px) {
    .waitlist-hero {
        padding: 120px 0 60px;
    }

    .waitlist-hero .hero-content {
        gap: 40px;
    }

    .waitlist-hero .hero-text h1 {
        font-size: 2.2rem;
    }

    .waitlist-hero .hero-text h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .waitlist-hero .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 15px 8px;
    }

    .stat-item h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    .waitlist-form-section {
        padding: 60px 0;
    }

    .form-container {
        padding: 30px 25px;
        border-radius: 15px;
    }

    .waitlist-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .waitlist-form .form-group {
        margin-bottom: 20px;
    }

    .waitlist-form .form-group label {
        font-size: 0.95rem;
    }

    .waitlist-form .form-group input,
    .waitlist-form .form-group select {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .checkbox-container {
        font-size: 0.85rem;
    }

    .checkbox-container input {
        width: 16px;
        height: 16px;
    }

    .waitlist-submit {
        padding: 16px;
        font-size: 1rem;
    }

    .benefits-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .benefit-card {
        padding: 25px 20px;
    }

    .benefit-card i {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .timeline-section {
        padding: 60px 0;
    }

    .timeline {
        margin-top: 40px;
    }

    .timeline::before {
        left: 20px;
        margin-left: 0;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
        margin-left: 0;
    }

    .timeline-content {
        padding: 20px;
        border-radius: 12px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content .date {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .timeline-content .description {
        font-size: 0.9rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        margin-top: 30px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 15px 0;
        font-size: 0.9rem;
    }

    .final-cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Mission section mobile */
    .company-mission-waitlist {
        padding: 50px 0 !important;
    }

    .company-mission-waitlist .section-header h2 {
        font-size: 1.8rem !important;
    }

    .company-mission-waitlist .section-header p {
        font-size: 1rem !important;
    }

    .company-mission-waitlist .mission-content {
        gap: 25px !important;
        margin-top: 25px !important;
    }

    .company-mission-waitlist .mission-text > div {
        padding: 20px !important;
        margin-bottom: 20px !important;
    }

    .company-mission-waitlist .mission-text h3 {
        font-size: 1.2rem !important;
    }

    .company-mission-waitlist .mission-text p {
        font-size: 0.9rem !important;
    }

    .company-mission-waitlist .mission-text ul li {
        font-size: 0.9rem !important;
        padding-left: 25px !important;
    }

    .company-mission-waitlist .mission-image div {
        border-radius: 10px !important;
    }

    .company-mission-waitlist .mission-image div div {
        padding: 20px !important;
    }

    .company-mission-waitlist .mission-image div div h4 {
        font-size: 1rem !important;
    }

    .company-mission-waitlist .mission-image div div p {
        font-size: 0.85rem !important;
    }
}

/* Small Mobile Breakpoint (480px) */
@media screen and (max-width: 480px) {
    .waitlist-hero {
        padding: 100px 0 40px;
    }

    .waitlist-hero::before {
        width: 300px;
        height: 300px;
        top: -30%;
    }

    .waitlist-hero .hero-text h1 {
        font-size: 1.8rem;
    }

    .waitlist-hero .hero-text h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .waitlist-hero .hero-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 1.5rem;
    }

    .stat-item {
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 1.4rem;
        margin-bottom: 0;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .waitlist-hero .hero-image {
        border-radius: 15px;
        max-width: 100%;
    }

    .waitlist-form-section {
        padding: 50px 0;
    }

    .form-container {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .waitlist-form .form-group {
        margin-bottom: 18px;
    }

    .waitlist-form .form-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .waitlist-form .form-group input,
    .waitlist-form .form-group select {
        padding: 12px 15px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    /* Custom dropdown mobile */
    .custom-referral-options {
        max-height: 250px;
    }

    .custom-referral-option {
        padding: 10px 15px;
        gap: 10px;
    }

    .referral-icon {
        font-size: 1rem;
        width: 20px;
    }

    .referral-text {
        font-size: 0.9rem;
    }

    .checkbox-container {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .checkbox-container input {
        width: 14px;
        height: 14px;
        margin-right: 10px;
    }

    .waitlist-submit {
        padding: 14px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .benefits-section {
        padding: 50px 0;
    }

    .benefits-grid {
        gap: 15px;
        margin-top: 25px;
    }

    .benefit-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .benefit-card i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }

    .timeline-section {
        padding: 50px 0;
    }

    .timeline {
        margin-top: 30px;
    }

    .timeline::before {
        left: 15px;
        width: 3px;
    }

    .timeline-item {
        margin-bottom: 30px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 50px;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
        left: 15px;
        margin-left: 0;
        box-shadow: 0 0 0 4px rgba(0, 187, 255, 0.2);
    }

    .timeline-content {
        padding: 18px 15px;
        border-radius: 10px;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content .date {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .timeline-content .description {
        font-size: 0.85rem;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-container {
        margin-top: 25px;
    }

    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-question i {
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 12px 0;
        font-size: 0.85rem;
    }

    .final-cta {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Mission section small mobile */
    .company-mission-waitlist {
        padding: 40px 0 !important;
    }

    .company-mission-waitlist .section-header h2 {
        font-size: 1.5rem !important;
    }

    .company-mission-waitlist .section-header p {
        font-size: 0.9rem !important;
    }

    .company-mission-waitlist .mission-text > div {
        padding: 18px !important;
        border-radius: 10px !important;
        margin-bottom: 18px !important;
    }

    .company-mission-waitlist .mission-text h3 {
        font-size: 1.1rem !important;
    }

    .company-mission-waitlist .mission-text p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    .company-mission-waitlist .mission-text ul li {
        font-size: 0.85rem !important;
        margin-bottom: 10px !important;
        padding-left: 22px !important;
    }

    .company-mission-waitlist .mission-image div {
        border-radius: 8px !important;
    }

    .company-mission-waitlist .mission-image div div {
        padding: 15px !important;
    }

    .company-mission-waitlist .mission-image div div h4 {
        font-size: 0.95rem !important;
    }

    .company-mission-waitlist .mission-image div div p {
        font-size: 0.8rem !important;
    }
}

/* Extra Small Mobile Breakpoint (320px) */
@media screen and (max-width: 360px) {
    .waitlist-hero .hero-text h1 {
        font-size: 1.6rem;
    }

    .waitlist-hero .hero-text h2 {
        font-size: 1rem;
    }

    .form-container {
        padding: 20px 15px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .stat-item {
        flex-direction: column;
        gap: 5px;
    }

    .benefit-card {
        padding: 18px 12px;
    }

    .timeline-content {
        padding: 15px 12px;
    }
}

/* Landscape orientation adjustments */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .waitlist-hero {
        padding: 100px 0 40px;
    }

    .waitlist-hero .hero-content {
        gap: 30px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 auto;
        min-width: 100px;
    }
}

/* High DPI / Retina display adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .waitlist-hero .hero-image {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .waitlist-hero .hero-image,
    .benefit-card,
    .waitlist-submit,
    .faq-question i {
        transition: none;
    }

    .benefit-card:hover {
        transform: none;
    }

    .waitlist-submit:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .waitlist-hero::before,
    .hero-image,
    .waitlist-form-section,
    .benefits-section,
    .timeline-section,
    .faq-section,
    .final-cta,
    .blog-subscribe {
        display: none;
    }

    .waitlist-hero {
        padding: 20px 0;
        background: white;
    }

    .waitlist-hero .hero-text h1 {
        color: #000;
    }
}

/* ========================================
   INLINE STYLE OVERRIDES FOR MOBILE
   ======================================== */

/* Override inline styles in company-mission-waitlist section */
.company-mission-waitlist {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .company-mission-waitlist {
        padding: 50px 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .company-mission-waitlist {
        padding: 40px 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .company-mission-waitlist {
        padding: 30px 0 !important;
    }
}

/* Mission content grid override */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

@media screen and (max-width: 1024px) {
    .mission-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-top: 30px !important;
    }

    .mission-text {
        order: 2;
    }

    .mission-image {
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    .mission-content {
        gap: 25px !important;
        margin-top: 25px !important;
    }
}

@media screen and (max-width: 480px) {
    .mission-content {
        gap: 20px !important;
        margin-top: 20px !important;
    }
}

/* Mission text boxes override */
.mission-text {
    padding: 0;
}

.mission-text > div {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 187, 255, 0.1);
    border-left: 4px solid #00bbff;
    margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
    .mission-text > div {
        padding: 20px !important;
        margin-bottom: 18px !important;
        border-radius: 10px !important;
    }
}

@media screen and (max-width: 480px) {
    .mission-text > div {
        padding: 15px !important;
        margin-bottom: 15px !important;
    }
}

/* Mission section headers */
.mission-text h3 {
    color: #00bbff;
    font-size: 1.4rem;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

@media screen and (max-width: 768px) {
    .mission-text h3 {
        font-size: 1.2rem !important;
        gap: 10px !important;
    }
}

@media screen and (max-width: 480px) {
    .mission-text h3 {
        font-size: 1.1rem !important;
        gap: 8px !important;
    }
}

/* Mission section paragraphs */
.mission-text p {
    color: #555;
    line-height: 1.7;
    margin: 15px 0 0 0;
}

@media screen and (max-width: 768px) {
    .mission-text p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin: 12px 0 0 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .mission-text p {
        font-size: 0.85rem !important;
        margin: 10px 0 0 0 !important;
    }
}

/* Mission section list items */
.mission-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-text ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .mission-text ul li {
        font-size: 0.9rem !important;
        padding-left: 25px !important;
        margin-bottom: 10px !important;
    }
}

@media screen and (max-width: 480px) {
    .mission-text ul li {
        font-size: 0.85rem !important;
        padding-left: 22px !important;
        margin-bottom: 8px !important;
        line-height: 1.6 !important;
    }
}

/* Mission section icons */
.mission-text i {
    color: #00bbff;
    font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
    .mission-text i {
        font-size: 1.1rem !important;
    }
}

@media screen and (max-width: 480px) {
    .mission-text i {
        font-size: 1rem !important;
    }
}

/* Special gradient box in mission section */
.mission-text > div:last-of-type {
    background: linear-gradient(135deg, #f0faff 0%, #e8f8ff 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #00bbff;
    margin-top: 25px;
}

@media screen and (max-width: 768px) {
    .mission-text > div:last-of-type {
        padding: 20px !important;
        border-radius: 10px !important;
        margin-top: 18px !important;
    }
}

@media screen and (max-width: 480px) {
    .mission-text > div:last-of-type {
        padding: 15px !important;
        border-radius: 8px !important;
        margin-top: 15px !important;
    }
}

/* Mission image container */
.mission-image {
    position: relative;
}

.mission-image > div {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 187, 255, 0.25);
}

@media screen and (max-width: 768px) {
    .mission-image > div {
        border-radius: 10px !important;
    }
}

@media screen and (max-width: 480px) {
    .mission-image > div {
        border-radius: 8px !important;
    }
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.05);
}

/* Mission image overlay text */
.mission-image > div > div {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 64, 128, 0.8), transparent);
    padding: 30px;
    color: white;
}

@media screen and (max-width: 768px) {
    .mission-image > div > div {
        padding: 20px !important;
    }
}

@media screen and (max-width: 480px) {
    .mission-image > div > div {
        padding: 15px !important;
    }
}

.mission-image > div > div h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .mission-image > div > div h4 {
        font-size: 1rem !important;
    }
}

@media screen and (max-width: 480px) {
    .mission-image > div > div h4 {
        font-size: 0.95rem !important;
        margin: 0 0 5px 0 !important;
    }
}

.mission-image > div > div p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .mission-image > div > div p {
        font-size: 0.85rem !important;
    }
}

@media screen and (max-width: 480px) {
    .mission-image > div > div p {
        font-size: 0.8rem !important;
    }
}

/* Section header inline styles override */
.company-mission-waitlist .section-header h2 {
    font-size: 2.4rem;
    color: #000;
    margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
    .company-mission-waitlist .section-header h2 {
        font-size: 2rem !important;
    }
}

@media screen and (max-width: 768px) {
    .company-mission-waitlist .section-header h2 {
        font-size: 1.8rem !important;
    }
}

@media screen and (max-width: 480px) {
    .company-mission-waitlist .section-header h2 {
        font-size: 1.5rem !important;
    }
}

.company-mission-waitlist .section-header p {
    font-size: 1.2rem;
    color: #00bbff;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .company-mission-waitlist .section-header p {
        font-size: 1rem !important;
    }
}

@media screen and (max-width: 480px) {
    .company-mission-waitlist .section-header p {
        font-size: 0.9rem !important;
    }
}