
/* Hero Section */
.hero {
    background: var(--primary-gradient);
    padding: 80px 0;
    color: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

/* KPI Section */
.kpi-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.kpi-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.kpi-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.kpi-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* Financial Highlights */
.financial-highlights {
    padding: 80px 0;
}

.report-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.report-btn {
    padding: 12px 30px;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.report-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.report-btn:hover {
    border-color: var(--primary-color);
}

.financial-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.financial-table th,
.financial-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.financial-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--text-dark);
}

.growth-positive {
    color: var(--success-color);
    font-weight: 600;
}

/* Contact IR */
.contact-ir {
    padding: 80px 0;
    background: var(--light-bg);
}

.ir-contact-content {
    display: flex;
    justify-content: space-around;
    width: 1200px;
    margin: 0 auto;
}

.ir-info-card,
.ir-form-card {
    width: 500px;
    background: var(--primary-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}
.ir-form-card {
    background: var(--white);
}
.ir-info-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.ir-info-description {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.7;
}

.ir-contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ir-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.ir-contact-item img {
    width: 24px;
    height: 24px;
}

.contact-label {
    font-size: 13px;
    color: var(--white);
    margin-bottom: 5px;
}

.contact-value {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
}

.contact-time {
    font-size: 13px;
    color: var(--white);
    margin-top: 2px;
}
