/* Közös "eyebrow" címke */
.section-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-faint);
    margin-bottom: 18px;
}

/* Hero */
.about-hero-section {
    margin-top: 180px;
    max-width: 700px;
}

.about-hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.about-hero-subtitle {
    font-size: 20px;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 480px;
}

/* Eredet */
.about-origin-section {
    margin-top: 160px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.origin-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
}

.origin-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

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

/* Statisztikák */
.about-stats-section {
    margin-top: 140px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stats-grid-divided {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
}

.stats-grid-divided .stat-item {
    align-items: flex-start;
    padding-right: 40px;
    border-right: 1px solid var(--border);
}

.stats-grid-divided .stat-item:last-child {
    border-right: none;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    margin-top: 10px;
    font-size: 15px;
    color: var(--text-muted);
}

/* Munkáink - kártyák */
.about-work-section {
    margin-top: 160px;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.work-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

.work-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.work-card:hover img {
    transform: scale(1.06);
}

.work-card-index {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    background: rgba(var(--surface-rgb), 0.9);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.work-card-body {
    padding: 28px 30px 32px;
}

.work-card-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.work-card-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.work-card-btn {
    display: inline-block;
}

.work-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
    transform: translateX(-130%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.work-card:hover::after {
    transform: translateX(130%);
}

/* Értékek */
.about-values-section {
    margin-top: 160px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.values-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
}

.values-accordion {
    border-top: 1px solid var(--border);
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.accordion-icon {
    font-weight: 400;
    font-size: 22px;
    color: var(--text-faint);
    transition: transform 0.25s ease;
}

.accordion-item.is-open .accordion-icon {
    transform: rotate(45deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.accordion-panel p {
    padding-bottom: 22px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 480px;
}

.accordion-item.is-open .accordion-panel {
    opacity: 1;
}

/* Csapat */
.about-team-section {
    margin-top: 160px;
}

.team-grid {
    display: flex;
    justify-content: center;
}

.team-member {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.team-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 22px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover .team-avatar {
    transform: scale(1.08);
}

.team-avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-avatar-logos {
    position: relative;
    background-color: var(--bg-muted);
}

.team-floating-logos {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
}

.team-floating-logos img {
    width: 26px;
}

.team-role {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-faint);
    margin-bottom: 8px;
}

.team-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Záró CTA */
.about-cta-section {
    margin-top: 180px;
}

.about-cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    max-width: 600px;
}

/* Kapcsolatfelvételi űrlap */
.about-contact-section {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 220px;
}

.about-contact-card {
    width: 100%;
    max-width: 560px;
}

@media (max-width: 900px) {
    .origin-grid,
    .work-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .stats-grid-divided .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 42px;
    }

    .origin-title,
    .values-title {
        font-size: 26px;
    }

    .about-cta-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 44px;
    }

    .work-card img {
        height: 200px;
    }
}
