/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 50%, #eff6ff 100%);
}

/* Utility classes */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.section-title-gradient {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

.gradient-text {
    background: linear-gradient(135deg, #1e3a8a, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
}

.cta-button {
    background: linear-gradient(135deg, #1e3a8a, #dc2626);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Main content */
.main-content {
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 50%, #eff6ff 100%);
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.ngo-badge {
    position: absolute;
    top: 4rem;
    right: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    transform: rotate(12deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e3a8a, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.7;
    padding: 0 1rem;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.form-input {
    height: 3rem;
    padding: 0 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-button {
    width: 100%;
    height: 3rem;
    background: linear-gradient(135deg, #1e3a8a, #dc2626);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1e40af, #dc2626);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #64748b;
    padding: 0 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 50%, #eff6ff 100%);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    background: linear-gradient(135deg, #1e3a8a, #dc2626);
    border-radius: 1.5rem;
    padding: 1rem;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon .icon {
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #64748b;
    line-height: 1.7;
}

/* Why Check Section */
.why-check-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a, #dc2626);
    position: relative;
    overflow: hidden;
}

.section-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url('https://images.unsplash.com/photo-1605810230434-7631ac76ec81?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 1rem;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon .icon {
    color: white;
}

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

.stat-text {
    color: #dbeafe;
    font-size: 0.875rem;
    line-height: 1.7;
}

.why-check-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

.content-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.content-text {
    font-size: 1.125rem;
    color: #dbeafe;
    line-height: 1.7;
}

.highlight-text {
    font-weight: 600;
    color: #fde047;
}

/* Report Section */
.report-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

.section-overlay-light {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center;
}

.report-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.blue-purple {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.purple-pink {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.green-teal {
    background: linear-gradient(135deg, #10b981, #06b6d4);
}

.orange-red {
    background: linear-gradient(135deg, #f59e0b, #dc2626);
}

.feature-icon .icon {
    color: white;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
    font-size: 0.875rem;
}

.report-cta {
    text-align: center;
    position: relative;
    z-index: 10;
}

.example-button {
    background: linear-gradient(135deg, #1e3a8a, #dc2626);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 800;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.example-button:hover {
    background: linear-gradient(135deg, #1e40af, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a, #dc2626);
    position: relative;
    overflow: hidden;
}

.about-content {
    color: white;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fde047;
    margin-bottom: 1rem;
}

.about-text {
    font-size: 1.125rem;
    color: #dbeafe;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-highlight {
    font-weight: 700;
    color: #fde047;
    font-size: 1.25rem;
}

.logos-section {
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.logos-container {
    overflow: hidden;
}

.logos-scroll {
    display: flex;
    gap: 2rem;
    animation: scroll 20s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-item img {
    height: 3rem;
    width: 8rem;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
}

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

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.final-cta-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.final-cta-content {
    margin-bottom: 2rem;
}

.sparkles-icon {
    height: 3rem;
    width: 3rem;
    color: #3b82f6;
    margin: 0 auto 1rem;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.final-cta-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.7;
}

.final-cta-form-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 32rem;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.final-cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    height: 1.25rem;
    width: 1.25rem;
    stroke-width: 2;
}

.final-input {
    height: 3rem;
    padding: 0 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: #f9fafb;
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
}

.input-with-icon .final-input {
    padding-left: 3rem;
}

.final-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.final-submit-button {
    height: 3.5rem;
    background: linear-gradient(135deg, #1e3a8a, #dc2626);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.final-submit-button:hover {
    background: linear-gradient(135deg, #1e40af, #dc2626);
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.button-icon {
    height: 1.25rem;
    width: 1.25rem;
    stroke-width: 2;
}

.final-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #64748b;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3a8a, #dc2626);
    position: relative;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url('https://images.unsplash.com/photo-1470813740244-df37b8c1edcb?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    position: relative;
    z-index: 10;
}

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

.footer-section {
    color: white;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-text {
    color: #dbeafe;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 0.5rem;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.social-icon {
    height: 1.25rem;
    width: 1.25rem;
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #dbeafe;
}

.contact-icon {
    height: 1.25rem;
    width: 1.25rem;
    margin-right: 0.75rem;
    color: #fde047;
    flex-shrink: 0;
    stroke-width: 2;
}

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

.footer-copyright {
    color: #dbeafe;
    font-size: 0.875rem;
    text-align: center;
}

/* Toast */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(0);
}

.toast.hidden {
    display: none;
}

.toast-content {
    color: #1f2937;
    font-weight: 500;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
        padding: 0;
    }
    
    .section-title,
    .section-title-white,
    .section-title-gradient {
        font-size: 3rem;
    }
    
    .final-cta-title {
        font-size: 3rem;
    }
    
    .ngo-badge {
        top: 1rem;
        right: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .section-title,
    .section-title-white,
    .section-title-gradient {
        font-size: 4rem;
    }
    
    .final-cta-title {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .report-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {

    .ngo-badge {
        transform: rotate(2deg);
        top: 3px;
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}