:root {
    --brand-color: #FB5300;
    --brand-color-hover: #e64d00;
    --bg-color: #ffffff;
    --bg-alt: #f8f9fa;
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --radius-lg: 32px;
    --radius-md: 20px;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 40px rgba(251, 83, 0, 0.15);
}

.about-company-page {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    overflow-x: hidden;
    line-height: 1.6;
}

.about-company-page h1,
.about-company-page h2,
.about-company-page h3 {
    font-weight: 800;
    margin-top: 0;
    color: var(--text-main);
}

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

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-bento-grid .bento-item,
.history-steps .step-card,
.innovations-grid .innovation-card {
    transition-delay: calc(var(--item-index, 0) * 0.1s);
}

.premium-hero {
    padding: 100px 0;
    background: var(--bg-color);
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--text-main);
    text-align: center;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.hero-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.bento-item {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid #eeeeee;
}

.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-color);
}

.bento-item p {
    font-size: 16px;
    margin: 0;
}

.bento-item.highlight-box {
    background: var(--brand-color);
    color: #ffffff;
    border: none;
}

.bento-item.highlight-box p {
    color: #ffffff;
}

.mission-statement {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(251, 83, 0, 0.15);
}

.mission-statement h2 {
    font-size: 32px;
    color: var(--brand-color);
    margin-bottom: 20px;
}

.mission-statement p {
    font-size: 20px;
    margin: 0;
}

.premium-history {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

.history-text h2 {
    font-size: 42px;
    color: var(--brand-color);
    margin-bottom: 30px;
}

.history-text p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.history-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--brand-color);
    box-shadow: var(--shadow-sm);
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    margin: 0;
}

.step-quote {
    padding: 30px;
    background: rgba(251, 83, 0, 0.05);
    border-radius: var(--radius-md);
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    color: var(--brand-color);
}

.step-quote p {
    margin: 0;
}

.premium-awards {
    padding: 100px 0;
    background: var(--bg-color);
}

.awards-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.awards-intro h2 {
    font-size: 42px;
    color: var(--brand-color);
    margin-bottom: 20px;
}

.awards-intro p {
    font-size: 18px;
    color: var(--text-muted);
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}

.award-item {
    background: var(--bg-color);
    border: 1px solid #eeeeee;
    padding: 30px 40px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    overflow: hidden;
}

.award-item:hover,
.award-item.active {
    border-color: var(--brand-color);
    box-shadow: var(--shadow-hover);
}

.award-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.award-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.award-date {
    background: var(--brand-color);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.award-info p {
    color: var(--text-muted);
    margin: 0;
}

.award-item .award-mosaic {
    display: flex;
    gap: 15px;
    align-items: stretch;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s ease, opacity 0.5s ease, margin 0.5s ease;
    margin-top: 0;
    width: 100%;
}

.award-item.active .award-mosaic {
    max-height: 1500px;
    opacity: 1;
    margin-top: 24px;
}

.mosaic-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mosaic-img-box {
    flex: 1;
    background-color: #fafafa;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.mosaic-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .award-item.active .award-mosaic {
        flex-direction: column;
    }

    .mosaic-col {
        width: 100%;
    }

    .mosaic-img-box {
        min-height: unset;
    }
}

.awards-record {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--bg-alt);
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 83, 0, 0.15);
}

.record-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.record-highlight {
    margin: 30px 0;
    padding-left: 20px;
    border-left: 4px solid var(--brand-color);
}

.record-highlight h3 {
    font-size: 28px;
    color: var(--text-main);
    margin-bottom: 10px;
}

.record-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.record-images img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    object-fit: cover;
}

.record-images img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

@media (max-width: 991px) {
    .record-images {
        flex-direction: row;
    }

    .record-images img {
        width: calc(50% - 10px);
    }

}

@media (max-width: 576px) {
    .record-images {
        flex-direction: column;
    }

    .record-images img {
        width: 100%;
    }
}

.premium-innovations {
    padding: 100px 0;
    background: var(--bg-alt);
    text-align: center;
}

.premium-innovations h2 {
    font-size: 42px;
    color: var(--brand-color);
    margin-bottom: 24px;
}

.innovations-lead {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 60px;
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.innovation-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid transparent;
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-color);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    width: 60px;
    height: 60px;
    background: var(--brand-color);
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(251, 83, 0, 0.2);
}

.innovation-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.innovation-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}

.innovations-footer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-main);
}

.premium-cta {
    padding: 100px 0;
    background: var(--bg-color);
}

.cta-box {
    background: var(--brand-color);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(251, 83, 0, 0.3);
}

.cta-box h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 24px;
}

.cta-box p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 16px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-highlight {
    font-weight: 800;
    font-size: 22px !important;
    margin: 30px auto !important;
    color: #ffffff !important;
}

.btn-premium-cta {
    display: inline-block;
    margin-top: 40px;
    padding: 20px 50px;
    background: #ffffff;
    color: var(--brand-color);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.btn-premium-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--text-main);
}

.premium-inline-link {
    color: var(--mainColor, #FB5300);
    text-decoration: none;
    position: relative;
    font-weight: 700;
    display: inline-block;
    transition: color 0.3s ease;
}

.premium-inline-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--mainColor, #FB5300);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-inline-link:hover {
    color: var(--mainColor, #FB5300);
}

.premium-inline-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 991px) {
    .hero-bento-grid,
    .history-grid,
    .awards-record,
    .innovations-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 40px;
    }

    .mission-statement, .awards-record, .cta-box{
        padding: 32px 24px;
    }

    .mission-statement h2 {
        font-size: 24px;
    }

    .history-text h2, .awards-intro h2, .premium-innovations h2, .cta-box h2 {
        font-size: 32px;
    }
}