/* =========================================================
   DIANAPARTS - FOOTER INFO BLOCKS + INFO PAGES
   ========================================================= */

.dp-footer-info {
    background:
        radial-gradient(circle at top left, rgba(255, 203, 39, .10), transparent 30%),
        linear-gradient(180deg, #071525 0%, #050b14 100%);
    color: #ffffff;
    padding: 48px 0 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.dp-footer-info .dp-footer-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.dp-footer-top {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.dp-footer-brand,
.dp-footer-block {
    background: linear-gradient(180deg, rgba(14,35,61,.92), rgba(7,18,32,.98));
    border: 1px solid rgba(255, 203, 39, .14);
    box-shadow: 0 16px 34px rgba(0,0,0,.28);
    border-radius: 22px;
    padding: 22px;
}

.dp-footer-brand .logo-word {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 14px;
}

.dp-footer-brand .logo-word span:first-child {
    background: #ffcc27;
    color: #061a35;
    border-radius: 9px;
    padding: 3px 8px;
    margin-right: 4px;
}

.dp-footer-brand p,
.dp-footer-block p {
    color: #c8d6e8;
    line-height: 1.5;
    margin: 0 0 12px;
}

.dp-footer-block h3 {
    color: #ffffff !important;
    font-size: 20px;
    margin: 0 0 12px;
}

.dp-footer-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.dp-footer-block li {
    color: #c8d6e8;
    margin-bottom: 8px;
    line-height: 1.35;
}

.dp-footer-block li::before {
    content: "✓";
    color: #ffcc27;
    font-weight: 900;
    margin-right: 8px;
}

.dp-footer-link,
.dp-footer-info a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
}

.dp-footer-link:hover,
.dp-footer-info a:hover {
    color: #ffcc27 !important;
}

.dp-footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.dp-footer-contacts a {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    padding: 9px 12px;
    border-radius: 12px;
}

.dp-footer-bottom {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: #9fb2ca;
}

.dp-footer-bottom-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Info pages */
.info-page-wrap {
    background:
        radial-gradient(circle at top left, rgba(255,203,39,.10), transparent 30%),
        linear-gradient(180deg, #071525 0%, #07101d 100%);
    padding: 54px 0;
    color: #ffffff;
}

.info-page-card {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(14,35,61,.92), rgba(7,18,32,.98));
    border: 1px solid rgba(255, 203, 39, .14);
    box-shadow: 0 18px 44px rgba(0,0,0,.30);
    border-radius: 26px;
    padding: 34px;
}

.info-page-kicker {
    color: #ffcc27;
    font-weight: 900;
    margin-bottom: 10px;
}

.info-page-card h1 {
    color: #ffffff !important;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    margin: 0 0 14px;
}

.info-page-lead {
    color: #c8d6e8 !important;
    font-size: 18px;
    max-width: 760px;
    margin-bottom: 28px;
}

.info-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.info-section-card {
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    padding: 20px;
}

.info-section-card h2 {
    color: #ffffff !important;
    margin: 0 0 12px;
    font-size: 22px;
}

.info-section-card ul {
    margin: 0;
    padding-left: 20px;
}

.info-section-card li {
    color: #d6e3f4;
    margin-bottom: 10px;
    line-height: 1.45;
}

.info-contact-line {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.info-contact-line a {
    display: inline-flex;
    background: #ffcc27;
    color: #061a35 !important;
    padding: 11px 14px;
    border-radius: 13px;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 920px) {
    .dp-footer-top,
    .info-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .dp-footer-info {
        padding-top: 32px;
    }

    .dp-footer-brand,
    .dp-footer-block,
    .info-page-card {
        border-radius: 18px;
        padding: 18px;
    }

    .dp-footer-bottom {
        flex-direction: column;
    }
}
