.about-page {
    padding-bottom: 60px;
}

/* Хлебные крошки */
.breadcrumbs {
    margin: 20px 0;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
}

.breadcrumbs__item a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumbs__item a:hover {
    color: #f0cf4c;
}

.breadcrumbs__sep {
    margin: 0 8px;
    color: #d1d5db;
    font-size: 10px;
}

.breadcrumb_last {
    color: #1a1a1a;
    font-weight: 500;
}

/* Шапка с заголовком и conversion */
._block-group__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

._block-group__head-left {
    width: 70%;
    padding-right: 20px;
}

._block-title-wrapper {
    margin-bottom: 12px;
}

._block-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.aluminumrolled__listing-products-shown {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
}

.aluminumrolled__listing-products-shown span {
    font-weight: 600;
    color: #1a1a1a;
}

/* Описание */
.aluminumrolled__listing-descr {
    margin-top: 16px;
}

.aluminumrolled__listing-descr-content {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    max-height: 75px;
    overflow: hidden;
    position: relative;
}

.aluminumrolled__listing-descr-content.expanded {
    max-height: none;
}

.aluminumrolled__listing-descr-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}

.aluminumrolled__listing-descr-content.expanded::after {
    display: none;
}

.aluminumrolled__listing-descr-content p {
    margin: 0 0 12px;
}

.aluminumrolled__listing-descr-content p:last-child {
    margin-bottom: 0;
}

.aluminumrolled__listing-descr-content ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.aluminumrolled__listing-descr-content li {
    margin-bottom: 4px;
}

.aluminumrolled__listing-descr-content a {
    color: #1a1a1a;
    text-decoration: underline;
}
.aluminumrolled__listing-descr-content a:hover {
    color: #b8860b;
}

.aluminumrolled__listing-descr-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-top: 12px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    font-weight: 500;
}

.aluminumrolled__listing-descr-toggle:hover {
    color: #f0cf4c;
}

/* Conversion блок */
.conversion {
    width: 30%;
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px 16px;
}

.conversion ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.conversion ul li {
    font-size: 12px;
    color: #374151;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.conversion ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 11px;
}

.conversion__bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}

.conversion__online {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.conversion__online-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.conversion__online p {
    font-size: 12px;
    color: #374151;
    margin: 0;
}

.conversion__contacts {
    display: flex;
    gap: 8px;
    align-items: center;
}

.conversion__contacts a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: #fff;
    transition: all 0.2s ease;
}

.conversion__contacts a:hover {
    background: #f0cf4c;
}

/* Адаптивность conversion */
@media (max-width: 991px) {
    ._block-group__head-left {
        width: 60%;
    }
    
    .conversion {
        width: 40%;
    }
    
    ._block-title {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    ._block-group__head {
        flex-direction: column;
    }
    
    ._block-group__head-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .conversion {
        width: 100%;
    }
    
    ._block-title {
        font-size: 20px;
    }
}

/* Банер О нас */
.about-banner {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.about-banner__inner {
    display: flex;
    align-items: center;
    min-height: 400px;
}

.about-banner__content {
    flex: 1;
    padding: 48px 60px;
    color: #fff;
}

.about-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 207, 76, 0.15);
    color: #f0cf4c;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-banner__title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.about-banner__title span {
    color: #f0cf4c;
}

.about-banner__subtitle {
    font-size: 18px;
    color: #9ca3af;
    margin: 0 0 24px;
    line-height: 1.6;
}

.about-banner__text {
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.7;
    margin: 0 0 32px;
}

.about-banner__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-banner__btn--primary {
    background: #f0cf4c;
    color: #1a1a1a;
}

.about-banner__btn--primary:hover {
    background: #e5c43f;
    transform: translateY(-2px);
}

.about-banner__btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.about-banner__btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.about-banner__image {
    flex: 0 0 45%;
    height: 400px;
    position: relative;
}

.about-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .about-banner__inner {
        flex-direction: column;
    }
    .about-banner__content {
        padding: 40px 32px;
        text-align: center;
    }
    .about-banner__title {
        font-size: 32px;
    }
    .about-banner__actions {
        justify-content: center;
    }
    .about-banner__image {
        flex: 0 0 250px;
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 640px) {
    .about-banner {
        border-radius: 16px;
        margin-bottom: 24px;
    }
    .about-banner__inner {
        min-height: auto;
    }
    .about-banner__content {
        padding: 24px 20px;
        text-align: left;
    }
    .about-banner__badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }
    .about-banner__title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    .about-banner__subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .about-banner__text {
        font-size: 13px;
        margin-bottom: 20px;
        display: none;
    }
    .about-banner__actions {
        flex-direction: column;
        gap: 10px;
    }
    .about-banner__btn {
        padding: 12px 20px;
        font-size: 14px;
        justify-content: center;
    }
    .about-banner__image {
        height: 180px;
    }
}

/* Статистика */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
}

.stat-card__number {
    font-size: 42px;
    font-weight: 700;
    color: #f0cf4c;
    margin: 0 0 8px;
}

.stat-card__label {
    font-size: 14px;
    color: #6b7280;
}

/* Почему выбирают */
.why-choose-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.why-choose-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.why-choose-section__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #f0cf4c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.why-choose-section__title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.why-choose-section__title strong {
    color: #f0cf4c;
}

.why-choose-section__subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-choose-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .why-choose-section__header {
        text-align: left;
        margin-bottom: 24px;
    }
    .why-choose-section__title {
        font-size: 22px;
    }
    .why-choose-section__subtitle {
        margin: 0;
        font-size: 14px;
    }
    .why-choose-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 4px 4px 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .why-choose-grid::-webkit-scrollbar {
        height: 4px;
    }
    .why-choose-grid::-webkit-scrollbar-thumb {
        background: #f0cf4c;
        border-radius: 2px;
    }
    .why-choose-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        padding: 24px 20px;
    }
}

.why-choose-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.why-choose-card__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(240, 207, 76, 0.15), rgba(240, 207, 76, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #f0cf4c;
}

.why-choose-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.why-choose-card__text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Процесс работы */
.how-we-work-section {
    margin-bottom: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
}

.how-we-work-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.how-we-work-section__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #f0cf4c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.how-we-work-section__title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.how-we-work-section__title strong {
    color: #f0cf4c;
}

.how-we-work-steps {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 0 40px;
}

@media (max-width: 991px) {
    .how-we-work-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
}

.how-we-work-step {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    text-align: center;
    position: relative;
}

@media (max-width: 991px) {
    .how-we-work-step {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 640px) {
    .how-we-work-section {
        padding: 32px 16px;
        border-radius: 16px;
        margin-bottom: 40px;
    }
    .how-we-work-section__header {
        text-align: left;
        margin-bottom: 20px;
        padding: 0 4px;
    }
    .how-we-work-section__label {
        font-size: 11px;
    }
    .how-we-work-section__title {
        font-size: 20px;
    }
    .how-we-work-steps {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 4px 4px 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .how-we-work-steps::-webkit-scrollbar {
        height: 4px;
    }
    .how-we-work-steps::-webkit-scrollbar-thumb {
        background: #f0cf4c;
        border-radius: 2px;
    }
    .how-we-work-step {
        flex: 0 0 220px;
        scroll-snap-align: start;
        background: rgba(255,255,255,0.08);
        border-radius: 16px;
        padding: 24px 20px;
        min-width: auto;
        max-width: none;
    }
    .how-we-work-step:not(:last-child)::after {
        display: none;
    }
    .how-we-work-step__num {
        width: 44px;
        height: 44px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    .how-we-work-step__title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .how-we-work-step__text {
        font-size: 13px;
    }
}

.how-we-work-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f0cf4c, transparent);
}

@media (max-width: 991px) {
    .how-we-work-step:not(:last-child)::after {
        display: none;
    }
}

.how-we-work-step__num {
    width: 48px;
    height: 48px;
    background: #f0cf4c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 auto 16px;
}

.how-we-work-step__title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}

.how-we-work-step__text {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

/* География */
.geography-section {
    margin-bottom: 80px;
}

.geography-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.geography-section__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #f0cf4c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.geography-section__title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.geography-section__title strong {
    color: #f0cf4c;
}

.geography-section__subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.geography-map {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.geography-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d1d5db"/></svg>') repeat;
    background-size: 20px 20px;
    opacity: 0.5;
}

.geography-map__content {
    position: relative;
    z-index: 1;
}

.geography-map__cities {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.geography-city {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.geography-city i {
    font-size: 20px;
    color: #f0cf4c;
}

.geography-city div {
    text-align: left;
}

.geography-city strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.geography-city span {
    font-size: 13px;
    color: #6b7280;
}

.geography-map__note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.geography-map__note i {
    font-size: 20px;
    color: #f0cf4c;
}

.geography-map__note p {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
}

@media (max-width: 640px) {
    .geography-section {
        margin-bottom: 40px;
    }
    .geography-section__header {
        text-align: left;
        margin-bottom: 24px;
    }
    .geography-section__title {
        font-size: 22px;
    }
    .geography-section__subtitle {
        margin: 0;
        font-size: 14px;
    }
    .geography-map {
        padding: 24px 16px;
        border-radius: 16px;
    }
    .geography-map__cities {
        gap: 12px;
        margin-bottom: 20px;
    }
    .geography-city {
        padding: 12px 16px;
        flex: 1;
        min-width: 140px;
    }
    .geography-city strong {
        font-size: 14px;
    }
    .geography-map__note {
        flex-direction: column;
        padding: 16px 20px;
        border-radius: 12px;
        text-align: center;
    }
}

/* Документы (сертификаты и письма) */
.documents-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.documents-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.documents-section__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #f0cf4c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.documents-section__title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.documents-section__title span {
    color: #f0cf4c;
}

.documents-section__subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.documents-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.documents-tab {
    padding: 12px 32px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.documents-tab:hover,
.documents-tab.active {
    background: #f0cf4c;
    border-color: #f0cf4c;
    color: #1a1a1a;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 1100px) {
    .documents-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .documents-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .documents-section__header {
        text-align: left;
        margin-bottom: 24px;
    }
    .documents-section__title {
        font-size: 22px;
    }
    .documents-section__subtitle {
        margin: 0;
        font-size: 14px;
    }
    .documents-section__block {
        margin-top: 32px !important;
    }
    .documents-section__block h3 {
        text-align: left !important;
        font-size: 16px !important;
    }
    .documents-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 4px 4px 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .documents-grid::-webkit-scrollbar {
        height: 4px;
    }
    .documents-grid::-webkit-scrollbar-thumb {
        background: #f0cf4c;
        border-radius: 2px;
    }
    .document-card {
        flex: 0 0 200px;
        scroll-snap-align: start;
    }
    .document-card__preview {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .document-card {
        flex: 0 0 180px;
    }
}

.document-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.document-card__preview {
    height: 260px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.document-card__preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 140"><rect x="15" y="10" width="70" height="120" rx="2" fill="none" stroke="%23d1d5db" stroke-width="1.5"/><line x1="25" y1="30" x2="75" y2="30" stroke="%23d1d5db" stroke-width="1"/><line x1="25" y1="40" x2="75" y2="40" stroke="%23d1d5db" stroke-width="1"/><line x1="25" y1="50" x2="75" y2="50" stroke="%23d1d5db" stroke-width="1"/></svg>') center/60% no-repeat;
    opacity: 0.4;
}

.document-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(240, 207, 76, 0.2), rgba(240, 207, 76, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #f0cf4c;
    position: relative;
    z-index: 1;
}

.document-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    background: #f0cf4c;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
}

.document-card__content {
    padding: 16px 20px 20px;
}

.document-card__title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.3;
}

.document-card__desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 12px;
    line-height: 1.4;
}

.document-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #f0cf4c;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.document-card__link:hover {
    gap: 12px;
}

.documents-section__footer {
    text-align: center;
}

.documents-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.documents-section__btn:hover {
    background: #f0cf4c;
    color: #1a1a1a;
}

/* Клиенты */
.clients-section {
    margin-top: 80px;
    padding: 60px 0;
    background: #f9fafb;
    border-radius: 24px;
}

.clients-section__title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 48px;
    line-height: 1.4;
}

.clients-section__title span {
    color: #f0cf4c;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    align-items: center;
}

.client-logo {
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 640px) {
    .clients-section {
        margin-top: 40px;
        padding: 32px 0;
        border-radius: 16px;
    }
    .clients-section__title {
        text-align: left;
        font-size: 20px;
        margin-bottom: 24px;
        padding: 0 20px;
    }
    .clients-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 12px;
        padding: 4px 20px 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .clients-grid::-webkit-scrollbar {
        height: 4px;
    }
    .clients-grid::-webkit-scrollbar-thumb {
        background: #f0cf4c;
        border-radius: 2px;
    }
    .client-logo {
        flex: 0 0 130px;
        height: 65px;
        padding: 12px;
        scroll-snap-align: start;
    }
}
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .clients-section__title {
        font-size: 22px;
    }
    .clients-grid {
        gap: 16px;
    }
    .client-logo {
        width: 130px;
        height: 65px;
        padding: 12px;
    }
}

/* Попап «Начать сотрудничать» */
.b2b-cooperation-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.b2b-cooperation-popup.active {
    opacity: 1;
    visibility: visible;
}
.b2b-cooperation-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    cursor: pointer;
}
.b2b-cooperation-popup__content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 440px;
    width: 100%;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.b2b-cooperation-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: #6b7280;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.b2b-cooperation-popup__close:hover {
    background: #e5e7eb;
    color: #1a1a1a;
}
.b2b-cooperation-popup__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px;
    padding-right: 40px;
    line-height: 1.35;
}
.b2b-cooperation-popup__form .form-group {
    margin-bottom: 16px;
}
.b2b-cooperation-popup__form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}
.b2b-cooperation-popup__form input,
.b2b-cooperation-popup__form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
}
.b2b-cooperation-popup__form input:focus,
.b2b-cooperation-popup__form textarea:focus {
    outline: none;
    border-color: #f0cf4c;
    box-shadow: 0 0 0 3px rgba(240, 207, 76, 0.2);
}
.b2b-cooperation-popup__form textarea {
    min-height: 80px;
    resize: vertical;
}
.b2b-cooperation-popup__submit {
    width: 100%;
    padding: 14px 24px;
    background: #f0cf4c;
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.2s;
}
.b2b-cooperation-popup__submit:hover {
    background: #e5c43f;
    transform: translateY(-1px);
}

/* Страница «О компании» */
.page-about .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
    .page-about .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .page-about .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* from delivery.blade.php */
.delivery-page {
    padding-bottom: 60px;
}

/* Хлебные крошки */
.breadcrumbs {
    margin: 20px 0;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
}

.breadcrumbs__item a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumbs__item a:hover {
    color: #f0cf4c;
}

.breadcrumbs__sep {
    margin: 0 8px;
    color: #d1d5db;
    font-size: 10px;
}

.breadcrumb_last {
    color: #1a1a1a;
    font-weight: 500;
}

/* Шапка с заголовком и conversion */
._block-group__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

._block-group__head-left {
    width: 70%;
    padding-right: 20px;
}

._block-title-wrapper {
    margin-bottom: 12px;
}

._block-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.aluminumrolled__listing-products-shown {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
}

.aluminumrolled__listing-products-shown span {
    font-weight: 600;
    color: #1a1a1a;
}

/* Описание */
.aluminumrolled__listing-descr {
    margin-top: 16px;
}

.aluminumrolled__listing-descr-content {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    max-height: 75px;
    overflow: hidden;
    position: relative;
}

.aluminumrolled__listing-descr-content.expanded {
    max-height: none;
}

.aluminumrolled__listing-descr-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}

.aluminumrolled__listing-descr-content.expanded::after {
    display: none;
}

.aluminumrolled__listing-descr-content p {
    margin: 0 0 12px;
}

.aluminumrolled__listing-descr-content p:last-child {
    margin-bottom: 0;
}

.aluminumrolled__listing-descr-content ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.aluminumrolled__listing-descr-content li {
    margin-bottom: 4px;
}

.aluminumrolled__listing-descr-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-top: 12px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    font-weight: 500;
}

.aluminumrolled__listing-descr-toggle:hover {
    color: #f0cf4c;
}

/* Conversion блок */
.conversion {
    width: 30%;
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px 16px;
}

.conversion ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.conversion ul li {
    font-size: 12px;
    color: #374151;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.conversion ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 11px;
}

.conversion__bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}

.conversion__online {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.conversion__online-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.conversion__online p {
    font-size: 12px;
    color: #374151;
    margin: 0;
}

.conversion__contacts {
    display: flex;
    gap: 8px;
    align-items: center;
}

.conversion__contacts a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: #fff;
    transition: all 0.2s ease;
}

.conversion__contacts a:hover {
    background: #f0cf4c;
}

/* Адаптивность conversion */
@media (max-width: 991px) {
    ._block-group__head-left {
        width: 60%;
    }
    
    .conversion {
        width: 40%;
    }
    
    ._block-title {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    ._block-group__head {
        flex-direction: column;
    }
    
    ._block-group__head-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .conversion {
        width: 100%;
    }
    
    ._block-title {
        font-size: 20px;
    }
}

/* Варианты доставки */
.delivery-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .delivery-options {
        grid-template-columns: 1fr;
    }
}

.delivery-option {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.delivery-option__icon {
    width: 56px;
    height: 56px;
    background: rgba(240, 207, 76, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #f0cf4c;
}

.delivery-option__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.delivery-option__text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px;
}

.delivery-option__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-option__features li {
    font-size: 14px;
    color: #374151;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
}

.delivery-option__features li:last-child {
    border-bottom: none;
}

.delivery-option__features li strong {
    color: #1a1a1a;
}

/* Парк транспорта */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
}

.vehicle-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.vehicle-card__icon {
    font-size: 40px;
    color: #f0cf4c;
    margin-bottom: 12px;
}

.vehicle-card__name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.vehicle-card__specs {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* from payment.blade.php */
.payment-page {
    padding-bottom: 60px;
}

/* Хлебные крошки */
.breadcrumbs {
    margin: 20px 0;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
}

.breadcrumbs__item a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumbs__item a:hover {
    color: #f0cf4c;
}

.breadcrumbs__sep {
    margin: 0 8px;
    color: #d1d5db;
    font-size: 10px;
}

.breadcrumb_last {
    color: #1a1a1a;
    font-weight: 500;
}

/* Шапка с заголовком и conversion */
._block-group__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

._block-group__head-left {
    width: 70%;
    padding-right: 20px;
}

._block-title-wrapper {
    margin-bottom: 12px;
}

._block-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.aluminumrolled__listing-products-shown {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
}

.aluminumrolled__listing-products-shown span {
    font-weight: 600;
    color: #1a1a1a;
}

/* Описание */
.aluminumrolled__listing-descr {
    margin-top: 16px;
}

.aluminumrolled__listing-descr-content {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    max-height: 75px;
    overflow: hidden;
    position: relative;
}

.aluminumrolled__listing-descr-content.expanded {
    max-height: none;
}

.aluminumrolled__listing-descr-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}

.aluminumrolled__listing-descr-content.expanded::after {
    display: none;
}

.aluminumrolled__listing-descr-content p {
    margin: 0 0 12px;
}

.aluminumrolled__listing-descr-content p:last-child {
    margin-bottom: 0;
}

.aluminumrolled__listing-descr-content ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.aluminumrolled__listing-descr-content li {
    margin-bottom: 4px;
}

.aluminumrolled__listing-descr-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-top: 12px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    font-weight: 500;
}

.aluminumrolled__listing-descr-toggle:hover {
    color: #f0cf4c;
}

/* Conversion блок */
.conversion {
    width: 30%;
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px 16px;
}

.conversion ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.conversion ul li {
    font-size: 12px;
    color: #374151;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.conversion ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 11px;
}

.conversion__bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}

.conversion__online {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.conversion__online-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.conversion__online p {
    font-size: 12px;
    color: #374151;
    margin: 0;
}

.conversion__contacts {
    display: flex;
    gap: 8px;
    align-items: center;
}

.conversion__contacts a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: #fff;
    transition: all 0.2s ease;
}

.conversion__contacts a:hover {
    background: #f0cf4c;
}

/* Адаптивность conversion */
@media (max-width: 991px) {
    ._block-group__head-left {
        width: 60%;
    }
    
    .conversion {
        width: 40%;
    }
    
    ._block-title {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    ._block-group__head {
        flex-direction: column;
    }
    
    ._block-group__head-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .conversion {
        width: 100%;
    }
    
    ._block-title {
        font-size: 20px;
    }
}

/* Способы оплаты */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

.payment-method {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.payment-method__icon {
    width: 56px;
    height: 56px;
    background: rgba(240, 207, 76, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #f0cf4c;
}

.payment-method__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.payment-method__text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px;
}

.payment-method__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-method__list li {
    font-size: 14px;
    color: #374151;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.payment-method__list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Инфо блок */
.info-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
}

.info-box__title {
    font-size: 16px;
    font-weight: 600;
    color: #166534;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box__text {
    font-size: 14px;
    color: #166534;
    line-height: 1.6;
    margin: 0;
}

/* from reviews.blade.php */
.reviews-page {
    padding-bottom: 60px;
}

/* Хлебные крошки */
.breadcrumbs {
    margin: 20px 0;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
}

.breadcrumbs__item a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumbs__item a:hover {
    color: #f0cf4c;
}

.breadcrumbs__sep {
    margin: 0 8px;
    color: #d1d5db;
    font-size: 10px;
}

.breadcrumb_last {
    color: #1a1a1a;
    font-weight: 500;
}

/* Шапка с заголовком и conversion */
._block-group__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

._block-group__head-left {
    width: 70%;
    padding-right: 20px;
}

._block-title-wrapper {
    margin-bottom: 12px;
}

._block-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.aluminumrolled__listing-products-shown {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
}

.aluminumrolled__listing-products-shown span {
    font-weight: 600;
    color: #1a1a1a;
}

/* Описание */
.aluminumrolled__listing-descr {
    margin-top: 16px;
}

.aluminumrolled__listing-descr-content {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    max-height: 75px;
    overflow: hidden;
    position: relative;
}

.aluminumrolled__listing-descr-content.expanded {
    max-height: none;
}

.aluminumrolled__listing-descr-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}

.aluminumrolled__listing-descr-content.expanded::after {
    display: none;
}

.aluminumrolled__listing-descr-content p {
    margin: 0 0 12px;
}

.aluminumrolled__listing-descr-content p:last-child {
    margin-bottom: 0;
}

.aluminumrolled__listing-descr-content ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.aluminumrolled__listing-descr-content li {
    margin-bottom: 4px;
}

.aluminumrolled__listing-descr-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-top: 12px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    font-weight: 500;
}

.aluminumrolled__listing-descr-toggle:hover {
    color: #f0cf4c;
}

/* Conversion блок */
.conversion {
    width: 30%;
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px 16px;
}

.conversion ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.conversion ul li {
    font-size: 12px;
    color: #374151;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.conversion ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 11px;
}

.conversion__bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}

.conversion__online {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.conversion__online-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.conversion__online p {
    font-size: 12px;
    color: #374151;
    margin: 0;
}

.conversion__contacts {
    display: flex;
    gap: 8px;
    align-items: center;
}

.conversion__contacts a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: #fff;
    transition: all 0.2s ease;
}

.conversion__contacts a:hover {
    background: #f0cf4c;
}

/* Адаптивность conversion */
@media (max-width: 991px) {
    ._block-group__head-left {
        width: 60%;
    }
    
    .conversion {
        width: 40%;
    }
    
    ._block-title {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    ._block-group__head {
        flex-direction: column;
    }
    
    ._block-group__head-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .conversion {
        width: 100%;
    }
    
    ._block-title {
        font-size: 20px;
    }
}

/* Сетка отзывов */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(240, 207, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #f0cf4c;
    flex-shrink: 0;
}

.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-card__info {
    flex: 1;
}

.review-card__name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.review-card__company {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 4px;
}

.review-card__rating {
    color: #f0cf4c;
    font-size: 14px;
}

.review-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.review-card__date {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 16px;
}

.no-reviews {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

/* Документы (как на странице О нас) */
.documents-section { margin-top: 80px; margin-bottom: 80px; }
.documents-section__header { text-align: center; margin-bottom: 48px; }
.documents-section__label { display: inline-block; font-size: 13px; font-weight: 500; color: #f0cf4c; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.documents-section__title { font-size: 32px; font-weight: 700; color: #1a1a1a; margin: 0 0 16px; }
.documents-section__title span { color: #f0cf4c; }
.documents-section__subtitle { font-size: 16px; color: #6b7280; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.documents-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
@media (max-width: 900px) { .documents-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
    .documents-section { margin-top: 40px; margin-bottom: 40px; }
    .documents-section__header { margin-bottom: 24px; }
    .documents-section__title { font-size: 22px; }
    .documents-section__subtitle { font-size: 14px; }
    .documents-grid { display: flex; overflow-x: auto; gap: 12px; padding: 4px 4px 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
    .document-card { flex: 0 0 200px; scroll-snap-align: start; }
    .document-card__preview { height: 220px; }
}
.document-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid #f3f4f6; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.document-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.document-card__preview { height: 260px; background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.document-card__preview::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 140"><rect x="15" y="10" width="70" height="120" rx="2" fill="none" stroke="%23d1d5db" stroke-width="1.5"/><line x1="25" y1="30" x2="75" y2="30" stroke="%23d1d5db" stroke-width="1"/><line x1="25" y1="40" x2="75" y2="40" stroke="%23d1d5db" stroke-width="1"/><line x1="25" y1="50" x2="75" y2="50" stroke="%23d1d5db" stroke-width="1"/></svg>') center/60% no-repeat; opacity: 0.4; }
.document-card__icon { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(240, 207, 76, 0.2), rgba(240, 207, 76, 0.1)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #f0cf4c; position: relative; z-index: 1; }
.document-card__badge { position: absolute; top: 12px; right: 12px; padding: 5px 10px; background: #f0cf4c; border-radius: 4px; font-size: 10px; font-weight: 600; color: #1a1a1a; text-transform: uppercase; }
.document-card__content { padding: 16px 20px 20px; }
.document-card__title { font-size: 15px; font-weight: 600; color: #1a1a1a; margin: 0 0 6px; line-height: 1.3; }
.document-card__desc { font-size: 13px; color: #6b7280; margin: 0 0 12px; line-height: 1.4; }
.document-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: #f0cf4c; text-decoration: none; transition: gap 0.2s ease; }
.document-card__link:hover { gap: 12px; }
.documents-section__footer { text-align: center; }
.documents-section__btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: #1a1a1a; color: #fff; border-radius: 10px; font-size: 15px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; }
.documents-section__btn:hover { background: #f0cf4c; color: #1a1a1a; }

/* from vacancies.blade.php */
.vacancies-page {
    padding-bottom: 60px;
}

/* Хлебные крошки */
.breadcrumbs {
    margin: 20px 0;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
}

.breadcrumbs__item a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumbs__item a:hover {
    color: #f0cf4c;
}

.breadcrumbs__sep {
    margin: 0 8px;
    color: #d1d5db;
    font-size: 10px;
}

.breadcrumb_last {
    color: #1a1a1a;
    font-weight: 500;
}

/* Шапка с заголовком и conversion */
._block-group__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

._block-group__head-left {
    width: 70%;
    padding-right: 20px;
}

._block-title-wrapper {
    margin-bottom: 12px;
}

._block-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.aluminumrolled__listing-products-shown {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
}

.aluminumrolled__listing-products-shown span {
    font-weight: 600;
    color: #1a1a1a;
}

/* Описание */
.aluminumrolled__listing-descr {
    margin-top: 16px;
}

.aluminumrolled__listing-descr-content {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    max-height: 75px;
    overflow: hidden;
    position: relative;
}

.aluminumrolled__listing-descr-content.expanded {
    max-height: none;
}

.aluminumrolled__listing-descr-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}

.aluminumrolled__listing-descr-content.expanded::after {
    display: none;
}

.aluminumrolled__listing-descr-content p {
    margin: 0 0 12px;
}

.aluminumrolled__listing-descr-content p:last-child {
    margin-bottom: 0;
}

.aluminumrolled__listing-descr-content ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.aluminumrolled__listing-descr-content li {
    margin-bottom: 4px;
}

.aluminumrolled__listing-descr-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-top: 12px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    font-weight: 500;
}

.aluminumrolled__listing-descr-toggle:hover {
    color: #f0cf4c;
}

/* Conversion блок */
.conversion {
    width: 30%;
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px 16px;
}

.conversion ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.conversion ul li {
    font-size: 12px;
    color: #374151;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.conversion ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 11px;
}

.conversion__bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}

.conversion__online {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.conversion__online-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.conversion__online p {
    font-size: 12px;
    color: #374151;
    margin: 0;
}

.conversion__contacts {
    display: flex;
    gap: 8px;
    align-items: center;
}

.conversion__contacts a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: #fff;
    transition: all 0.2s ease;
}

.conversion__contacts a:hover {
    background: #f0cf4c;
}

/* Адаптивность conversion */
@media (max-width: 991px) {
    ._block-group__head-left {
        width: 60%;
    }
    
    .conversion {
        width: 40%;
    }
    
    ._block-title {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    ._block-group__head {
        flex-direction: column;
    }
    
    ._block-group__head-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .conversion {
        width: 100%;
    }
    
    ._block-title {
        font-size: 20px;
    }
}

/* Список вакансий */
.vacancies-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vacancy-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vacancy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.vacancy-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.vacancy-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.vacancy-card__salary {
    font-size: 16px;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.vacancy-card__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.vacancy-card__meta-item {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vacancy-card__meta-item i {
    color: #f0cf4c;
}

.vacancy-card__description {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0 0 16px;
}

.vacancy-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0cf4c;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.vacancy-card__btn:hover {
    background: #d4b73f;
}

.no-vacancies {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

/* Преимущества работы */
.benefits-section {
    margin-top: 60px;
}

.benefits-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px;
    text-align: center;
}

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

@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.benefit-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(240, 207, 76, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #f0cf4c;
}

.benefit-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.benefit-card__text {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* from certificates.blade.php */
.certificates-page {
    padding-bottom: 60px;
}

/* Хлебные крошки */
.breadcrumbs {
    margin: 20px 0;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
}

.breadcrumbs__item a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumbs__item a:hover {
    color: #f0cf4c;
}

.breadcrumbs__sep {
    margin: 0 8px;
    color: #d1d5db;
    font-size: 10px;
}

.breadcrumb_last {
    color: #1a1a1a;
    font-weight: 500;
}

/* Шапка с заголовком и conversion */
._block-group__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

._block-group__head-left {
    width: 70%;
    padding-right: 20px;
}

._block-title-wrapper {
    margin-bottom: 12px;
}

._block-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.aluminumrolled__listing-products-shown {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
}

.aluminumrolled__listing-products-shown span {
    font-weight: 600;
    color: #1a1a1a;
}

/* Описание */
.aluminumrolled__listing-descr {
    margin-top: 16px;
}

.aluminumrolled__listing-descr-content {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    max-height: 75px;
    overflow: hidden;
    position: relative;
}

.aluminumrolled__listing-descr-content.expanded {
    max-height: none;
}

.aluminumrolled__listing-descr-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}

.aluminumrolled__listing-descr-content.expanded::after {
    display: none;
}

.aluminumrolled__listing-descr-content p {
    margin: 0 0 12px;
}

.aluminumrolled__listing-descr-content p:last-child {
    margin-bottom: 0;
}

.aluminumrolled__listing-descr-content ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.aluminumrolled__listing-descr-content li {
    margin-bottom: 4px;
}

.aluminumrolled__listing-descr-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-top: 12px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    font-weight: 500;
}

.aluminumrolled__listing-descr-toggle:hover {
    color: #f0cf4c;
}

/* Conversion блок */
.conversion {
    width: 30%;
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px 16px;
}

.conversion ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.conversion ul li {
    font-size: 12px;
    color: #374151;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.conversion ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 11px;
}

.conversion__bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}

.conversion__online {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.conversion__online-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.conversion__online p {
    font-size: 12px;
    color: #374151;
    margin: 0;
}

.conversion__contacts {
    display: flex;
    gap: 8px;
    align-items: center;
}

.conversion__contacts a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: #fff;
    transition: all 0.2s ease;
}

.conversion__contacts a:hover {
    background: #f0cf4c;
}

/* Адаптивность conversion */
@media (max-width: 991px) {
    ._block-group__head-left {
        width: 60%;
    }
    .conversion {
        width: 40%;
    }
    ._block-title {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    ._block-group__head {
        flex-direction: column;
    }
    ._block-group__head-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .conversion {
        width: 100%;
    }
    ._block-title {
        font-size: 20px;
    }
}

/* Сертификаты */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .certificates-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }
}

.certificate-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.certificate-card__img {
    height: 280px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.certificate-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.certificate-card__icon {
    font-size: 64px;
    color: #d1d5db;
}

.certificate-card__content {
    padding: 20px;
}

.certificate-card__title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.certificate-card__type {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 12px;
}

.certificate-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f0cf4c;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.certificate-card__btn:hover {
    color: #d4b73f;
}

/* from thankyou.blade.php */
.thankyou-page {
    padding-bottom: 60px;
}

/* Хлебные крошки */
.breadcrumbs {
    margin: 20px 0;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
}

.breadcrumbs__item a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumbs__item a:hover {
    color: #f0cf4c;
}

.breadcrumbs__sep {
    margin: 0 8px;
    color: #d1d5db;
    font-size: 10px;
}

.breadcrumb_last {
    color: #1a1a1a;
    font-weight: 500;
}

/* Шапка с заголовком и conversion */
._block-group__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

._block-group__head-left {
    width: 70%;
    padding-right: 20px;
}

._block-title-wrapper {
    margin-bottom: 12px;
}

._block-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.aluminumrolled__listing-products-shown {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
}

.aluminumrolled__listing-products-shown span {
    font-weight: 600;
    color: #1a1a1a;
}

/* Описание */
.aluminumrolled__listing-descr {
    margin-top: 16px;
}

.aluminumrolled__listing-descr-content {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    max-height: 75px;
    overflow: hidden;
    position: relative;
}

.aluminumrolled__listing-descr-content.expanded {
    max-height: none;
}

.aluminumrolled__listing-descr-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}

.aluminumrolled__listing-descr-content.expanded::after {
    display: none;
}

.aluminumrolled__listing-descr-content p {
    margin: 0 0 12px;
}

.aluminumrolled__listing-descr-content p:last-child {
    margin-bottom: 0;
}

.aluminumrolled__listing-descr-content ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.aluminumrolled__listing-descr-content li {
    margin-bottom: 4px;
}

.aluminumrolled__listing-descr-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-top: 12px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    font-weight: 500;
}

.aluminumrolled__listing-descr-toggle:hover {
    color: #f0cf4c;
}

/* Conversion блок */
.conversion {
    width: 30%;
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px 16px;
}

.conversion ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.conversion ul li {
    font-size: 12px;
    color: #374151;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.conversion ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 11px;
}

.conversion__bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}

.conversion__online {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.conversion__online-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.conversion__online p {
    font-size: 12px;
    color: #374151;
    margin: 0;
}

.conversion__contacts {
    display: flex;
    gap: 8px;
    align-items: center;
}

.conversion__contacts a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: #fff;
    transition: all 0.2s ease;
}

.conversion__contacts a:hover {
    background: #f0cf4c;
}

/* Адаптивность conversion */
@media (max-width: 991px) {
    ._block-group__head-left {
        width: 60%;
    }
    .conversion {
        width: 40%;
    }
    ._block-title {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    ._block-group__head {
        flex-direction: column;
    }
    ._block-group__head-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .conversion {
        width: 100%;
    }
    ._block-title {
        font-size: 20px;
    }
}

/* Письма */
.letters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .letters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .letters-grid {
        grid-template-columns: 1fr;
    }
}

.letter-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.letter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.letter-card__img {
    height: 320px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.letter-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.letter-card__icon {
    font-size: 64px;
    color: #d1d5db;
}

.letter-card__content {
    padding: 20px;
}

.letter-card__company {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.letter-card__project {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 12px;
}

.letter-card__date {
    font-size: 12px;
    color: #9ca3af;
}

.letter-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: #f0cf4c;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.letter-card__btn:hover {
    color: #d4b73f;
}
