/* ==========================================================================
   Company Page Styles
   ========================================================================== */

/* Variables */
.company-page {
    --primary: #2B7BF4;
    --primary-dark: #1a5fc7;
    --primary-light: #e8f1fd;
    --accent: #00C853;
    --bg: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    --border: #e2e8f0;
    --shadow: rgba(15, 23, 42, 0.08);
}

/* Page Hero */
.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f1fd 50%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 123, 244, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.page-hero .breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero .breadcrumb a:hover {
    color: var(--primary);
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-lead {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 640px;
}

/* Section Common */
.company-page .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.company-page .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    background: var(--bg);
}

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

.intro-text p {
    font-size: 16px;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.intro-stat {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.intro-stat:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px var(--shadow);
    transform: translateY(-4px);
}

.intro-stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.intro-stat-number .unit {
    font-size: 24px;
    color: var(--accent);
}

.intro-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Strengths Section */
.strengths-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.strengths-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.strengths-content {
    background: var(--bg);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px var(--shadow);
}

.strengths-content p {
    font-size: 17px;
    line-height: 2;
    color: var(--text-secondary);
    text-align: left;
}

.strengths-highlight {
    display: inline;
    background: linear-gradient(transparent 60%, rgba(43, 123, 244, 0.15) 60%);
    font-weight: 500;
    color: var(--text-primary);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--bg);
}

.values-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.value-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px var(--shadow);
    transform: translateY(-8px);
}

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

.value-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.value-card:hover .value-icon svg {
    color: var(--text-white);
    stroke: var(--text-white);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    stroke: var(--primary);
    transition: all 0.3s ease;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CEO Section */
.ceo-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

.ceo-inner {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.ceo-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px var(--shadow);
}

.ceo-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 1;
}

.ceo-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.ceo-name-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    color: var(--text-white);
}

.ceo-name-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ceo-name-overlay span {
    font-size: 14px;
    opacity: 0.8;
}

.ceo-content {
    padding-top: 20px;
}

.ceo-content .section-title {
    margin-bottom: 32px;
}

.ceo-bio p {
    font-size: 16px;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.ceo-bio p:last-of-type {
    margin-bottom: 0;
}

/* Company Info */
.company-info {
    padding: 80px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

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

.info-table {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid var(--border);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    background: var(--bg-secondary);
    padding: 20px 24px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.info-value {
    padding: 20px 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.info-value a {
    color: var(--primary);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.cta-section .section-title {
    color: var(--text-white);
    font-size: 36px;
}

.cta-section .section-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 1.8;
}

.company-page .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.company-page .btn svg {
    width: 18px;
    height: 18px;
}

.company-page .btn-white {
    background: var(--bg);
    color: var(--primary);
}

.company-page .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .ceo-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ceo-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 48px 0;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .intro-section,
    .strengths-section,
    .values-section,
    .ceo-section {
        padding: 60px 0;
    }

    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .intro-stat {
        padding: 24px 16px;
    }

    .intro-stat-number {
        font-size: 36px;
    }

    .strengths-content {
        padding: 32px 24px;
    }

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

    .value-card {
        padding: 32px 24px;
    }

    .info-row {
        grid-template-columns: 1fr;
    }

    .info-label {
        border-bottom: none;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section .section-title {
        font-size: 28px;
    }
}
