/* Базовые сбросы стилей */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0d0f12; 
    color: #e2e8f0;
    font-family: 'Montserrat', sans-serif; /* Интеграция вашего фирменного шрифта */
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    min-height: 100vh;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 680px;
}

/* Шапка визитки */
.header {
    text-align: center;
    margin-bottom: 25px;
}

.logo-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 100%); /* Фирменный градиент Пунктовода */
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 12px;
    box-shadow: 0 4px 15px rgba(47, 128, 237, 0.3);
}

h1 {
    font-size: 22px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 6px;
}

.subtitle {
    font-size: 14px;
    color: #94a3b8;
}

/* Информационное примечание */
.disclaimer {
    background-color: #1e293b;
    border-left: 3px solid #2F80ED;
    padding: 14px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #cbd5e1;
}

/* Сетка кнопок контактов */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

@media (max-width: 480px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #f1f5f9;
    background-color: #14181c;
    border: 1px solid #22272e;
    transition: all 0.3s ease;
}

.btn-contact i {
    margin-right: 8px;
    color: #56CCF2;
}

.btn-contact:hover {
    background-color: #1e293b;
    border-color: #2F80ED;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 128, 237, 0.1);
}

/* Разделы с информацией */
h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f8fafc;
    border-left: 3px solid #2F80ED;
    padding-left: 10px;
}

.info-section, .bank-section {
    background-color: #14181c;
    border: 1px solid #22272e;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 25px;
}

.data-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 10px;
    border-bottom: 1px solid #1f242c;
}

.data-row:last-child {
    border-bottom: none;
}

.label {
    font-size: 13px;
    color: #64748b;
    max-width: 45%;
}

.value {
    font-size: 13px;
    color: #cbd5e1;
    text-align: right;
    word-break: break-word;
}

.value-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Кнопки копирования */
.btn-copy {
    background-color: transparent;
    color: #2F80ED;
    border: 1px solid #2F80ED;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-copy:hover {
    background-color: #2F80ED;
    color: #fff;
}

.btn-copy.copied, .btn-copy-mini.copied {
    background-color: #10b981 !important;
    border-color: #10b981 !important;
    color: #fff !important;
}

/* Аккордеоны / Спойлеры */
.accordion-item {
    border: 1px solid #22272e;
    background-color: #1c2127;
    border-radius: 8px;
    margin-top: 10px;
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 16px;
    color: #e2e8f0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.accordion-trigger:hover {
    background-color: #232932;
}

.arrow {
    font-size: 11px;
    color: #64748b;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    padding: 0 16px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: #14181c;
}

.accordion-item.active .accordion-content {
    max-height: 2000px; /* Запас высоты для раскрытия */
    padding: 16px;
    opacity: 1;
    border-top: 1px solid #22272e;
    transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
    color: #2F80ED;
}

/* Блок ОКВЭД */
.okved-main {
    font-size: 13px;
    color: #56CCF2;
    margin-bottom: 12px;
}

.okved-list p {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
    line-height: 1.4;
}

.okved-list p span {
    color: #cbd5e1;
    font-weight: 600;
    margin-right: 6px;
}

/* Реквизиты банков */
.section-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.bank-details p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.bank-details p:last-child {
    margin-bottom: 0;
}

.bank-details strong {
    color: #64748b;
    width: 35px;
}

.bank-details span {
    color: #f1f5f9;
    font-family: monospace;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-copy-mini {
    background: none;
    border: 1px solid #334155;
    color: #94a3b8;
    padding: 2px 6px;
    font-size: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-copy-mini:hover {
    border-color: #2F80ED;
    color: #2F80ED;
}

/* Подвал */
.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #475569;
}