/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: #2F3E46;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 145, 77, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 55px;
    width: auto;
}

.beta-label {
    background: none;
    color: #FF914D;
    font-size: 0.6rem;
    font-weight: 700;
    position: absolute;
    top: 8px;
    right: -35px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #FF914D;
}

.cta-btn {
    background: #FF914D;
    color: #FFFFFF !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #E67D3D;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
}

.btn-nav {
    background-color: #2F3E46;
    color: white !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #2F3E46 0%, #2B3A67 100%);
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.4;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

/* Requirements Section */
.requirements {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.requirements h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 16px;
    color: #2F3E46;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.requirement-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(47, 62, 70, 0.1);
    text-align: center;
}

.requirement-icon {
    display: none;
}

.requirement-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2F3E46;
    font-weight: 700;
}

.requirement-content > p {
    color: #555;
    margin-bottom: 24px;
    font-size: 16px;
}

.network-logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 24px;
    padding: 24px 0;
}

.network-logo {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.75;
    transition: opacity 0.2s ease, transform 0.2s ease;
    filter: grayscale(30%);
}

.network-logo:hover {
    opacity: 1;
    transform: scale(1.08);
    filter: grayscale(0%);
}

.network-badge {
    background: #2F3E46;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.network-badge:hover {
    background: #2B3A67;
    transform: translateY(-2px);
}

.no-program-note {
    margin-top: 8px;
    padding: 16px 24px;
    background: rgba(255, 145, 77, 0.1);
    border-radius: 12px;
    border: 2px dashed #FF914D;
    font-size: 15px;
    color: #555;
}

.no-program-note a {
    color: #FF914D;
    font-weight: 600;
    text-decoration: none;
}

.no-program-note a:hover {
    text-decoration: underline;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #fff;
}

.how-it-works h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 16px;
    color: #2F3E46;
    font-weight: 700;
}

.how-it-works .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 48px;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.process-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(47, 62, 70, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-number {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #2F3E46;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2F3E46;
    font-weight: 600;
}

.process-card p {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

/* Application Form Section */
.application-form {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2F3E46;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

.brand-application-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2F3E46;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    background-color: #2F3E46;
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #1e3a23;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: #2F3E46;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(47, 62, 70, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    margin-left: 35px;
}

.footer-logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    position: relative;
}

.footer-logo-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-image {
    height: 45px;
    width: auto;
}

.footer-beta-label {
    background: none;
    color: #FF914D;
    font-size: 0.5rem;
    font-weight: 700;
    position: absolute;
    top: 6px;
    right: -30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-brand {
    text-align: center;
}

.footer-brand h3 {
    color: #FF914D;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    color: #FF914D;
    background: rgba(255, 145, 77, 0.1);
}

.footer-links-simple {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links-simple a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links-simple a:hover {
    color: #FF914D;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #FF914D;
}

/* Success Message */
.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
}

/* Error Message */
.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Mobile styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2F3E46;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav.active {
        display: flex;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .beta-label {
        font-size: 0.5rem;
        top: 5px;
        right: -30px;
    }
    
    .hero {
        padding: 120px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .network-logos {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .network-logo {
        height: 28px;
    }
    
    .process-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .process-card {
        padding: 24px 20px;
    }
    
    .card-icon {
        font-size: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links-simple {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .container {
        max-width: 900px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        align-items: center;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-links-simple {
        gap: 40px;
    }
    
    .footer-legal {
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}