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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #f9fafb;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-box {
    width: 3rem;
    height: 3rem;
    background-color: #2563eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 0.875rem;
    }
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #2563eb;
}

/* Mobile Menu */
.menu-toggle {
    display: block;
    padding: 0.5rem;
    border: none;
    background: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle:hover {
    background-color: #f3f4f6;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    color: #374151;
}

.nav-mobile {
    display: none;
    padding: 1rem 0;
}

.nav-mobile.active {
    display: block;
}

.nav-link-mobile {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
}

.nav-link-mobile:hover {
    background-color: #eff6ff;
    color: #2563eb;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom right, #2563eb, #1e40af);
    color: white;
    padding: 5rem 0;
}

.hero-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #dbeafe;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-text {
        font-size: 1.25rem;
    }
}

.highlight {
    font-weight: 600;
    color: white;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    color: #2563eb;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #eff6ff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.arrow {
    font-size: 1.25rem;
}

/* Investment Case Section */
.investment-case-section {
    padding: 4rem 0;
    background-color: white;
}

.investment-case-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .investment-case-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.investment-case-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.investment-case-title {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .investment-case-title {
        font-size: 2.5rem;
    }
}

.investment-case-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
}

.highlight-inline {
    font-weight: 600;
    color: #2563eb;
}

.investment-case-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.75rem;
}

.investment-case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 2px dashed #d1d5db;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.image-placeholder svg {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.image-placeholder-text {
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.image-suggestion {
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
    max-width: 300px;
    line-height: 1.5;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    color: #111827;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.stat-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}

.stat-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stat-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.blue-icon {
    background-color: #eff6ff;
    color: #2563eb;
}

.green-icon {
    background-color: #f0fdf4;
    color: #059669;
}

.amber-icon {
    background-color: #fffbeb;
    color: #d97706;
}

.stat-title {
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: bold;
}

.blue-text {
    color: #2563eb;
}

.green-text {
    color: #10b981;
}

.amber-text {
    color: #d97706;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

/* Impact Section */
.impact-section {
    padding: 4rem 0;
    background-color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.impact-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: box-shadow 0.3s, transform 0.2s;
    border-top: 4px solid transparent;
}

.impact-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.impact-card:nth-child(1) {
    border-top-color: #ef4444;
}

.impact-card:nth-child(2) {
    border-top-color: #2563eb;
}

.impact-card:nth-child(3) {
    border-top-color: #10b981;
}

.impact-icon {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.red-icon {
    background-color: #fef2f2;
    color: #ef4444;
}

.impact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.impact-text {
    color: #4b5563;
    line-height: 1.75;
    font-size: 1rem;
}

.impact-text strong {
    color: #111827;
    font-weight: 600;
}

/* Charts Section */
.charts-section {
    padding: 4rem 0;
    background-color: white;
}

.charts-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.chart-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

@media (min-width: 1024px) {
    .chart-card {
        padding: 2rem;
    }
}

.chart-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.chart-wrapper {
    position: relative;
    height: 400px;
}

/* Table Section */
.table-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.table-desktop {
    display: none;
}

@media (min-width: 768px) {
    .table-desktop {
        display: block;
    }
}

.table-container {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background-color: #2563eb;
}

.data-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.data-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s;
}

.data-table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

.data-table tbody tr:hover {
    background-color: #eff6ff;
}

.data-table td {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.data-table td:first-child {
    font-weight: 500;
    color: #111827;
}

/* Mobile Table Cards */
.table-mobile {
    display: block;
}

@media (min-width: 768px) {
    .table-mobile {
        display: none;
    }
}

.mobile-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.mobile-card-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 1rem;
}

.mobile-card-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.mobile-card-label {
    font-weight: 500;
    color: #374151;
}

.mobile-card-value {
    color: #111827;
}

.mobile-card-remarks {
    padding-top: 0.5rem;
}

.mobile-card-remarks-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.mobile-card-remarks-text {
    color: #4b5563;
    font-size: 0.875rem;
}

/* Why This Matters Section */
.why-matters-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.why-matters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-matters-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.why-matters-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-matters-title {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .why-matters-title {
        font-size: 2.5rem;
    }
}

.why-matters-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.why-matters-text:last-of-type {
    margin-bottom: 0;
}

.why-matters-text strong {
    color: #111827;
    font-weight: 600;
}

.why-matters-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.75rem;
}

.why-matters-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Campaign Section */
.campaign-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #f0fdf4, #eff6ff);
}

.campaign-content {
    max-width: 56rem;
    margin: 0 auto;
}

.campaign-text {
    font-size: 1.125rem;
    color: #374151;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.75;
}

.campaign-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .campaign-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.campaign-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-placeholder {
    background-color: #f3f4f6;
    width: 12rem;
    height: 12rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.qr-placeholder svg {
    color: #9ca3af;
}

.qr-text {
    color: #4b5563;
    text-align: center;
}

.social-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-links {
    width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.social-link:hover {
    background-color: #eff6ff;
    color: #2563eb;
}

.social-icon {
    background-color: #dbeafe;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #2563eb;
    transition: background-color 0.2s;
}

.social-link:hover .social-icon {
    background-color: #bfdbfe;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0;
}

.partners-section {
    margin-bottom: 3rem;
}

.partners-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.partner-card {
    background-color: #1f2937;
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.partner-card:hover {
    background-color: #374151;
}

.partner-logo {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 100%;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.partner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-placeholder {
    color: #9ca3af;
    font-weight: 500;
    text-align: center;
}

.partner-name {
    color: #d1d5db;
    font-weight: 500;
}

.footer-divider {
    border-top: 1px solid #374151;
    margin: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
}

.contact-item svg {
    flex-shrink: 0;
}

.footer-text {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

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

.link:hover {
    text-decoration: underline;
}

.footer-note {
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}
