/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: #333;
}

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

/* ==================== ANIMATIONS ==================== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countdownPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
    }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 30%, #4a5568 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(50, 215, 75, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 32px;
    padding-bottom: 32px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: flex-start;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
    background: #FFD23F;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-weight: 900;
    margin-bottom: 24px;
    font-size: 3rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.7);
    line-height: 1.1;
}

.hero-title-highlight {
    color: #FF6B35;
}

.hero-subtitle {
    font-weight: 600;
    margin-bottom: 32px;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle-highlight {
    color: #FFD23F;
    font-weight: 800;
}

.hero-description {
    margin-bottom: 32px;
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.5;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-values {
    margin-bottom: 32px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-value {
    text-align: center;
}

.hero-value-icon {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.hero-value-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

/* Coming Soon Box */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.coming-soon-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 2px solid rgba(255, 107, 53, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

.coming-soon-title {
    font-size: 2rem;
    font-weight: 900;
    color: #FF6B35;
    margin-bottom: 16px;
}

.coming-soon-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 24px;
}

.countdown-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.countdown-item {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 12px;
    padding: 16px 8px;
    animation: countdownPulse 2s ease-in-out infinite;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    margin-top: 4px;
    font-weight: 600;
}

.coming-soon-footer {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* ==================== VALUE PROPOSITIONS ==================== */
.value-propositions {
    padding: 64px 0;
    background: #f8faff;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-weight: 900;
    margin-bottom: 16px;
    color: #333;
    font-size: 2.5rem;
}

.text-highlight {
    color: #FF6B35;
}

.section-subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.25rem;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.value-card {
    padding: 32px;
    text-align: center;
    min-height: 280px;
    color: white;
    border-radius: 16px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #FFD23F;
}

.value-title {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.value-badge {
    font-weight: 900;
    margin-bottom: 8px;
    color: #FFD23F;
    font-size: 2rem;
}

.value-description {
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.5;
}

/* ==================== TRUST SIGNALS ==================== */
.trust-signals {
    padding: 48px 0;
    background: white;
}

.trust-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.trust-metric {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-value {
    font-weight: 700;
    color: #333;
    font-size: 1.25rem;
}

.trust-label {
    color: #666;
    font-size: 0.875rem;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.1);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.trust-badge-green {
    background: #e8f5e8;
    color: #2e7d32;
}

.trust-badge-blue {
    background: #e3f2fd;
    color: #1976d2;
}

.badge-icon {
    font-size: 1rem;
}

/* ==================== ORGANIZATION PARTNERSHIP ==================== */
.organization-partnership {
    padding: 64px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.partnership-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.partnership-container {
    position: relative;
    z-index: 1;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.partnership-content {
    color: white;
}

.partnership-badge {
    display: inline-block;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.partnership-title {
    font-weight: 900;
    margin-bottom: 24px;
    font-size: 2.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.partnership-highlight {
    color: #FFD23F;
}

.partnership-subtitle {
    margin-bottom: 32px;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.partnership-benefits {
    margin-bottom: 32px;
}

.partnership-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.benefit-icon {
    color: #32D74B;
    font-size: 1.75rem;
    font-weight: 900;
}

.benefit-text {
    font-weight: 600;
    font-size: 1.25rem;
}

.partnership-button {
    background: #FFD23F;
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 16px 32px;
    border-radius: 40px;
    border: none;
    box-shadow: 0 8px 24px rgba(255, 210, 63, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.partnership-button:hover {
    background: #FFE066;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255, 210, 63, 0.6);
}

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.partnership-button:hover .button-arrow {
    transform: translateX(4px);
}

/* Partnership Cards */
.partnership-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partnership-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    transition: all 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-title {
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
    text-align: center;
    font-size: 1.25rem;
}

.org-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.org-type {
    text-align: center;
}

.org-icon {
    border-radius: 50%;
    padding: 12px;
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.org-label {
    font-weight: 600;
    color: #666;
    font-size: 0.875rem;
}

.card-description {
    color: #666;
    margin-bottom: 24px;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    font-weight: 600;
    color: #333;
    text-align: center;
    font-size: 0.875rem;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 32px 0;
    background: #1a1a1a;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    gap: 8px;
}

.footer-logo-icon {
    font-size: 2rem;
    color: #FF6B35;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.875rem;
}

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

.footer-section-title {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF6B35;
}

.footer-contact {
    opacity: 0.8;
    font-size: 0.875rem;
}

.footer-contact p {
    margin-bottom: 4px;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 24px 0;
}

.footer-copyright {
    text-align: center;
    opacity: 0.6;
    font-size: 0.875rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        text-align: left;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .hero-values {
        justify-content: flex-start;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partnership-grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .partnership-content {
        text-align: left;
    }

    .partnership-title {
        font-size: 3.5rem;
    }

    .partnership-subtitle {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand,
    .footer-section {
        text-align: left;
    }

    .footer-logo {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .value-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .countdown-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .coming-soon-box {
        padding: 32px 24px;
    }

    .coming-soon-title {
        font-size: 1.5rem;
    }

    .countdown-grid {
        gap: 8px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-unit {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .partnership-title {
        font-size: 2rem;
    }

    .partnership-subtitle {
        font-size: 1.1rem;
    }

    .benefit-text {
        font-size: 1rem;
    }

    .trust-divider {
        display: none;
    }
}