/* ===== SECTION COMMON ===== */
.company-section {
    padding: 80px 24px;
}

.company-section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.sec-label {
    display: inline-block;
    background: var(--bg-light);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.sec-title {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.sec-sub {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.8;
}

/* ===== GREETING ===== */
.greeting-section {
    background: var(--white);
}

.greeting-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
    line-height: 1.4;
    text-align: center;
}

.greeting-text .greeting-body {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 2;
    margin-top: 20px;
    margin-bottom: 24px;
}

.greeting-text .greeting-body strong {
    color: var(--blue);
}

/* ===== STRATEGY CARDS ===== */
.strategy-section {
    background: var(--bg-gray);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.strategy-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-mid));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.strategy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.strategy-card:hover::before {
    transform: scaleX(1);
}

.strategy-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--blue);
    transition: background 0.3s, color 0.3s;
}

.strategy-card:hover .strategy-icon {
    background: var(--blue);
    color: var(--white);
}

.strategy-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.strategy-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.8;
}

/* ===== VISION / VALUES ===== */
.vision-section {
    background: var(--white);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.vision-box {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 32px;
}

.vision-box h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-box p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.9;
}

/* ===== CTA STRIP ===== */
.company-cta {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    color: var(--white);
    padding: 64px 24px;
    text-align: center;
}

.company-cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.company-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    font-size: 15px;
}

.company-cta .btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--blue);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 8px;
    transition: opacity 0.2s;
}

.company-cta .btn-white:hover {
    opacity: 0.9;
}

/* ===== ANIMATE ===== */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.visible {
    opacity: 1;
    transform: none;
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .sec-title {
        padding: 0 20px;
    }
    
    .greeting-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .company-section {
        padding: 56px 20px;
    }

    .greeting-badge {
        right: 0;
        bottom: -12px;
    }
}