/* ===== ANIMATE ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.animate-fade-up.is-animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ABOUT HERO ===== */
.about-hero {
    background-color: var(--color-bg-darker);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,164,92,0.3), transparent);
}

.about-hero__bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none; overflow: hidden;
}

.about-hero__bg-text {
    position: absolute;
    right: -20px; top: 50%;
    transform: translateY(-50%);
    font-size: clamp(60px, 12vw, 160px);
    font-weight: bold;
    color: rgba(255,255,255,0.02);
    letter-spacing: clamp(6px, 2vw, 20px);
    user-select: none; line-height: 1; white-space: nowrap;
}

.about-hero__inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: center;
}

.about-hero__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.about-hero__logo-wrap:hover {
    box-shadow: 0 12px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,164,92,0.1);
    transform: translateY(-4px);
}

.about-hero__logo { width: 100%; max-width: 240px; height: auto; }

.about-hero__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: bold;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-hero__subtitle { font-size: 16px; color: var(--color-text-muted); letter-spacing: 0.5px; }

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--color-bg-dark);
    padding: 100px 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none;
}

/* ===== DESC ===== */
.about-desc {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px; align-items: start;
    padding-bottom: 80px; margin-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative; z-index: 1;
}

.about-desc__left { position: sticky; top: 40px; }

.about-desc__label {
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 2px;
    color: var(--color-accent); text-transform: uppercase; margin-bottom: 20px;
}

.about-desc__label::before {
    content: ''; width: 32px; height: 1px;
    background: var(--color-accent); flex-shrink: 0;
}

.about-desc__title { font-size: clamp(24px, 3vw, 40px); font-weight: bold; line-height: 1.2; }

.about-desc__title-line {
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    margin-top: 16px;
    transition: width 1s cubic-bezier(0.16,1,0.3,1) 0.3s;
}

.about-desc__title-line.is-animated { width: 48px; }

.about-desc__text { font-size: 15px; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-desc__text:last-child { margin-bottom: 0; }

/* ===== STATS ===== */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding-bottom: 80px; margin-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative; z-index: 1;
}

.about-stat {
    display: flex; flex-direction: column; gap: 8px;
    padding: 40px;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease; position: relative; overflow: hidden;
}

.about-stat::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    transition: width 0.6s ease;
}

.about-stat:hover::after { width: 100%; }
.about-stat:last-child { border-right: none; }
.about-stat:hover { background: rgba(201,164,92,0.03); }

.about-stat__num {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: bold; color: var(--color-accent);
    line-height: 1; letter-spacing: -1px;
}

.about-stat__label { font-size: 13px; color: var(--color-text-muted); letter-spacing: 0.5px; }

/* ===== VALUES ===== */
.about-values {
    padding-bottom: 80px; margin-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative; z-index: 1;
}

.about-values__header {
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 2px;
    color: var(--color-accent); text-transform: uppercase; margin-bottom: 20px;
}

.about-values__header::before {
    content: ''; width: 32px; height: 1px;
    background: var(--color-accent); flex-shrink: 0;
}

.about-values__title { font-size: clamp(22px, 3vw, 40px); font-weight: bold; margin-bottom: 48px; }

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

.about-value {
    padding: 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px;
    transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
    position: relative; overflow: hidden;
}

.about-value::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 0; background: linear-gradient(180deg, rgba(201,164,92,0.06), transparent);
    transition: height 0.4s ease;
}

.about-value:hover {
    border-color: rgba(201,164,92,0.3); background: rgba(201,164,92,0.03);
    transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.about-value:hover::before { height: 100%; }
.about-value__num { font-size: 13px; color: var(--color-accent); letter-spacing: 2px; margin-bottom: 16px; font-weight: bold; }
.about-value__title { font-size: 15px; font-weight: bold; margin-bottom: 12px; line-height: 1.3; }
.about-value__text { font-size: 13px; color: var(--color-text-muted); line-height: 1.7; }

/* ===== CTA ===== */
.about-cta { text-align: center; position: relative; z-index: 1; }
.about-cta__title { font-size: clamp(22px, 3vw, 40px); font-weight: bold; margin-bottom: 16px; letter-spacing: -0.5px; }
.about-cta__text { font-size: 15px; color: var(--color-text-muted); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.about-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .about-values__grid { grid-template-columns: repeat(2, 1fr); }
    .about-hero__inner { grid-template-columns: 200px 1fr; gap: 40px; }
}

@media (max-width: 599px) {
    .about-hero { padding: 80px 0 48px; }
    .about-hero__inner { grid-template-columns: 1fr; gap: 28px; }
    .about-hero__logo-wrap { padding: 20px; max-width: 200px; margin: 0 auto; }
    .about-hero__subtitle { font-size: 13px; }

    .about-section { padding: 48px 0 60px; }

    .about-desc { grid-template-columns: 1fr; gap: 24px; padding-bottom: 48px; margin-bottom: 48px; }
    .about-desc__left { position: static; }
    .about-desc__text { font-size: 13px; }

    .about-stats { grid-template-columns: repeat(2, 1fr); padding-bottom: 48px; margin-bottom: 48px; }
    .about-stat { padding: 24px 16px; }
    .about-stat__label { font-size: 11px; }

    .about-values { padding-bottom: 48px; margin-bottom: 48px; }
    .about-values__title { margin-bottom: 28px; }
    .about-values__grid { grid-template-columns: 1fr; gap: 16px; }
    .about-value { padding: 20px; }
    .about-value:hover { transform: none; }

    .about-cta__btns { flex-direction: column; align-items: center; }
    .about-cta__btns .btn { width: 100%; text-align: center; }
}