.org-page-wrapper {
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    min-height: calc(100vh - 200px);
    position: relative;
    overflow: hidden;
}

.org-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    z-index: 0;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-10px); }
}

.org-page-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    animation: particles 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes particles {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.org-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 20px;
    position: relative;
    z-index: 1;
}

.org-card-header {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 45px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,1) 100%);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.12), 0 5px 25px rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.org-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #14b8a6, #0ea5e9, transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.org-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #14b8a6 0%, #0ea5e9 100%);
}

.org-card-logo {
    flex-shrink: 0;
    position: relative;
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.org-card-logo::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(14, 165, 233, 0.2) 100%);
    border-radius: 15px;
    z-index: -1;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}

.org-card-logo img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    padding: 20px;
    border: 3px solid rgba(20, 184, 166, 0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.org-card-logo img:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 50px rgba(20, 184, 166, 0.4);
    border-color: #14b8a6;
}

.org-logo-placeholder {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 3px solid rgba(20, 184, 166, 0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    font-size: 64px;
    color: #14b8a6;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.org-logo-placeholder:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 50px rgba(20, 184, 166, 0.4);
    border-color: #14b8a6;
}

.org-card-title h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 50%, #14b8a6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
    animation: gradientMove 4s ease infinite;
    position: relative;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.org-card-title h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #14b8a6 0%, #0ea5e9 100%);
    transition: width 0.5s ease;
}

.org-card-header:hover .org-card-title h1::after {
    width: 100%;
}

.org-card-full-name {
    font-size: 17px;
    color: #555;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.org-card-lead {
    font-size: 18px;
    line-height: 1.9;
    color: #2d3748;
    margin-bottom: 40px;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-left: 5px solid;
    border-image: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%) 1;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    animation: fadeIn 0.8s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.org-card-lead::before {
    content: '"';
    font-size: 60px;
    color: rgba(20, 184, 166, 0.15);
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: Georgia, serif;
}

.org-card-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 35px;
    margin-bottom: 50px;
}

.org-card-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.org-card-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.org-card-section {
    background: rgba(255,255,255,0.98);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.6s ease-out both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.org-card-section:nth-child(1) { animation-delay: 0.1s; }
.org-card-section:nth-child(2) { animation-delay: 0.2s; }
.org-card-section:nth-child(3) { animation-delay: 0.3s; }
.org-card-section:nth-child(4) { animation-delay: 0.4s; }
.org-card-section:nth-child(5) { animation-delay: 0.5s; }

/* Отступ для секции с кратким описанием перед grid */
.org-card-header + .org-card-section {
    margin-bottom: 35px;
}

.org-card-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
    transition: left 0.5s ease;
}

.org-card-section:hover::before {
    left: 100%;
}

.org-card-section:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 30px rgba(20, 184, 166, 0.2);
    transform: translateY(-8px) scale(1.02);
}

.org-section-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    padding-bottom: 18px;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(90deg, #14b8a6 0%, #0ea5e9 100%) 1;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.org-section-title i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 6px 25px rgba(20, 184, 166, 0.5); }
}

.org-section-content {
    font-size: 16px;
    line-height: 1.9;
    color: #2d3748;
    font-weight: 400;
}

.org-section-content p {
    margin: 0 0 16px 0;
}

.org-section-content p:last-child {
    margin-bottom: 0;
}

.org-list {
    display: grid;
    gap: 12px;
}

.org-list-item {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
    border-radius: 10px;
    font-size: 15px;
    color: #2d3748;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(20, 184, 166, 0.1);
    position: relative;
    overflow: hidden;
}

.org-list-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.org-list-item:hover::before {
    width: 400px;
    height: 400px;
}

.org-list-item:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.15);
    transform: translateX(5px) scale(1.02);
}

.org-list-item strong {
    display: block;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.okved-code {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%);
    color: white;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    margin-right: 10px;
}

.okved-desc {
    color: #2d3748;
    font-size: 14px;
    line-height: 1.6;
}

.okved-item.main {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12) 0%, rgba(14, 165, 233, 0.12) 100%);
    border-radius: 10px;
    margin-bottom: 12px;
    border: 2px solid rgba(20, 184, 166, 0.3);
    font-size: 15px;
    font-weight: 600;
}

.org-info-grid {
    display: grid;
    gap: 14px;
}

.org-info-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
    border-radius: 10px;
    font-size: 15px;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(20, 184, 166, 0.1);
}

.org-info-item:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateX(8px) scale(1.03);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.2);
}

.org-info-label {
    font-weight: 700;
    color: #555;
    min-width: 120px;
    font-size: 15px;
}

.org-info-value {
    color: #1a1a1a;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
    font-size: 15px;
}

.org-contacts-grid {
    display: grid;
    gap: 14px;
}

.org-contact-item {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
    border-radius: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(20, 184, 166, 0.1);
}

.org-contact-item:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateX(8px) scale(1.03);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.2);
}

.org-contact-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 3px 12px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
}

.org-contact-item:hover i {
    transform: rotate(360deg) scale(1.2);
    box-shadow: 0 5px 20px rgba(20, 184, 166, 0.5);
}

.org-contact-item a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.org-contact-item a:hover {
    color: #14b8a6;
    text-decoration: underline;
}

.org-bank-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bank-info {
    padding: 18px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
    border-radius: 10px;
    margin-bottom: 14px;
    border: 2px solid rgba(20, 184, 166, 0.1);
    transition: all 0.3s ease;
}

.bank-info:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.15);
}

.bank-info p strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.org-bank-card {
    padding: 22px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.06) 0%, rgba(14, 165, 233, 0.06) 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(20, 184, 166, 0.15);
    border-left-width: 5px;
    position: relative;
    overflow: hidden;
}

.org-bank-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%);
}

.org-bank-card:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12) 0%, rgba(14, 165, 233, 0.12) 100%);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.25);
}

.org-bank-name {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 17px;
}

.org-bank-info {
    display: grid;
    gap: 10px;
    font-size: 15px;
}

.org-bank-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.org-bank-row span:first-child {
    color: #555;
    font-weight: 600;
}

.org-bank-row span:last-child {
    color: #1a1a1a;
    font-weight: 700;
    text-align: right;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.org-dept-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.org-dept-card {
    padding: 18px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(20, 184, 166, 0.1);
}

.org-dept-card:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateX(8px) scale(1.03);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.2);
}

.org-dept-card h3 {
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    font-size: 16px;
}

.org-dept-card .contact-person {
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 6px 0;
    font-size: 14px;
}

.org-dept-card .contact-position {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 10px 0;
    font-style: italic;
}

.org-dept-name {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 16px;
}

.org-dept-info {
    display: grid;
    gap: 8px;
    color: #2d3748;
    font-size: 14px;
}

.org-footer {
    margin-top: 50px;
    text-align: center;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.org-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 25px rgba(20, 184, 166, 0.35);
    position: relative;
    overflow: hidden;
}

.org-btn-back::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.org-btn-back::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.org-btn-back:hover::after {
    width: 300px;
    height: 300px;
}

.org-btn-back:hover::before {
    opacity: 1;
}

.org-btn-back:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 45px rgba(20, 184, 166, 0.6);
}

.org-btn-back i {
    font-size: 16px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.org-btn-back:hover i {
    transform: translateX(-5px);
}

@media (max-width: 1024px) {
    .org-card-grid {
        grid-template-columns: 1fr;
    }
}

/* Компактный список запросов */
.requests-compact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.request-compact-item {
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
    border-radius: 10px;
    border: 2px solid rgba(20, 184, 166, 0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.request-compact-item:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.15);
}

.request-compact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.request-compact-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    flex: 1;
    transition: color 0.2s;
}

.request-compact-title:hover {
    color: #14b8a6;
}

.request-compact-type {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.request-type-goods {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.request-type-services {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.request-type-works {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.request-compact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
}

.request-compact-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.request-compact-meta i {
    font-size: 12px;
}

.request-compact-category {
    color: #6366f1;
}

.request-compact-budget {
    color: #059669;
    font-weight: 600;
}

.request-compact-date {
    color: #64748b;
}

.request-compact-deadline {
    color: #0ea5e9;
    font-weight: 600;
}

.request-compact-deadline.deadline-urgent {
    color: #ef4444;
}

.org-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.org-btn-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.5);
}

@media (max-width: 768px) {
    .org-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
    }
    
    .org-card-title h1 {
        font-size: 32px;
    }
    
    .org-section-title {
        font-size: 22px;
    }
    
    .org-info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .org-info-value {
        text-align: left;
    }
    
    .request-compact-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .request-compact-meta {
        font-size: 12px;
    }
}
