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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
}

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

/* Header */
.header {
    background: #000;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #f63;
}

.logo .subtitle {
    font-size: 0.875rem;
    color: #ccc;
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 2rem;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 8rem 0 6rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;   
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f63;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.warning-icon {
    font-size: 8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #f63;
    color: #fff;
    border-color: #f63;
}

.btn-primary:hover {
    background: #f63;
    border-color: #f63;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Problem Section */
.problem {
    padding: 6rem 0;
    background: #1a1a1a;
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #404040;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.problem-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f63;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Solution Section */
.solution {
    padding: 6rem 0;
    background: #0a0a0a;
}

.solution h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-intro {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
    line-height: 1.7;
}

.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #f63;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step-content p {
    color: #b0b0b0;
}

.protocol-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #404040;
}

.protocol {
    flex: 1;
    text-align: center;
}

.protocol h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #ffffff;
}

.protocol-issues,
.protocol-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.issue,
.benefit {
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
}

.issue {
    background: #ffe6e6;
    color: #d32f2f;
}

.benefit {
    background: #e8f5e8;
    color: #2e7d32;
}

.arrow {
    font-size: 1.5rem;
    color: #f63;
    font-weight: bold;
    vertical-align: middle;
}

/* Initiative Section */
.initiative {
    padding: 6rem 0;
    background: #1a1a1a;
}

.initiative h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.highlight {
    color: #f63;
}

.initiative-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.initiative-intro {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
    line-height: 1.7;
}

.initiative-goals h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.initiative-goals ul {
    list-style: none;
    margin-bottom: 2rem;
}

.initiative-goals li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #b0b0b0;
}

.initiative-goals li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f63;
    font-weight: bold;
}

.initiative-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.initiative-visual {
    text-align: center;
    vertical-align: middle;
}

.company-logo {
    margin-bottom: 1rem;
}

.company-logo img {
    max-width: 200px;
    height: auto;
}

.initiative-badge {
    background: #f63;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Partners Section */
.partners {
    padding: 6rem 0;
    background: #0a0a0a;
}

.partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.partners-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid #404040;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card.leader {
    border-color: #f63;
    background: #2d2d2d;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.2);
}

.partner-card.placeholder {
    border: 2px dashed #666;
    background: #0a0a0a;
}

.partner-logo {
    margin-bottom: 1rem;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: #404040;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: #999;
    font-weight: bold;
}

.partner-card.leader .logo-placeholder {
    background: #f63;
    color: #fff;
}

.partner-card h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.partner-link {
    color: #ffffff;
    text-decoration: none;
}

.partner-link:hover {
    color: #f63;
}

.partner-role {
    color: #f63;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.partner-description {
    color: #b0b0b0;
    font-size: 0.875rem;
}

.join-cta {
    text-align: center;
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #404040;
}

.join-cta h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.join-cta p {
    margin-bottom: 2rem;
    color: #b0b0b0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #1a1a1a;
    color: #fff;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item strong {
    color: #f63;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #f63;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 2rem 0;
}

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

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #f63;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .solution-content,
    .initiative-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .protocol-comparison {
        flex-direction: column;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .hero-actions,
    .initiative-cta {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .problem h2,
    .solution h2,
    .initiative h2,
    .partners h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}
