/* ===========================
   ROOT
=========================== */

.dr1058services {
    padding: 90px 20px;
    background: radial-gradient(circle at top, #0b1220, #05070d);
    color: #e8eefc;
    overflow-x: hidden;
}

/* ===========================
   CONTAINER
=========================== */

.dr1058services__container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===========================
   HEADER
=========================== */

.dr1058services__header {
    text-align: center;
    margin-bottom: 50px;
}

.dr1058services__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

.dr1058services__subtitle {
    font-size: 14px;
    opacity: 0.75;
    margin-top: 10px;
}

/* ===========================
   GRID
=========================== */

.dr1058services__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

/* ===========================
   MANAGEMENT HIGHLIGHT
=========================== */

.dr1058services__highlight {
	margin-top: 10px;
	font-size: 13.5px;
	line-height: 1.6;

	color: #fde68a;

	background: rgba(250, 204, 21, 0.08);
	border-left: 3px solid #facc15;

	padding: 10px 12px;
	border-radius: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
    .dr1058services__grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   CARD
=========================== */

.dr1058services__card {
    padding: 22px;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);

    transition: 0.3s ease;

    min-width: 0;
}

.dr1058services__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ===========================
   TEXT
=========================== */

.dr1058services__card-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.dr1058services__text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

/* ===========================
   DISCLAIMER
=========================== */

.dr1058services__disclaimer {
    margin-top: 40px;
    padding: 18px;
    font-size: 13px;
    opacity: 0.7;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.dr1058services__cta {
    margin-top: 50px;
    padding: 30px;
    border-radius: 18px;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    text-align: center;
}

.dr1058services__cta-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.dr1058services__cta-text {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* BUTTONS */
.dr1058services__cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.dr1058services__cta-btn {
    padding: 12px 18px;
    border-radius: 12px;

    text-decoration: none;
    font-size: 14px;

    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);

    color: #e8eefc;

    transition: 0.3s ease;
}

.dr1058services__cta-btn:hover {
    transform: translateY(-3px);
    background: rgba(96, 165, 250, 0.25);
}

/* SECONDARY BUTTON */
.dr1058services__cta-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.15);
}