/* ============================================================
   country-pages.css — Shared styles for all CifraHQ country pages
   ============================================================ */

/* ----- Hero ----- */
.country-hero {
    background: linear-gradient(135deg, #083D7F 0%, #073d73 100%);
    padding: 120px 0 80px;
    position: relative;
}
.country-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.05" width="100" height="100"/></svg>');
    opacity: 0.1;
}

/* ----- Compliance badge ----- */
.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 150, 63, 0.2);
    border: 1px solid #E8963F;
    color: #E8963F;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* ----- Feature icon box ----- */
.feature-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ----- Color utilities ----- */
.bg-blue   { background: rgba(8, 61, 127, 0.1); color: #083D7F; }
.bg-orange { background: rgba(232, 150, 63, 0.1); color: #E8963F; }
.bg-green  { background: rgba(40, 167, 69, 0.1); color: #28a745; }

/* ----- Compliance card ----- */
.compliance-card {
    background: var(--cifra-bg-primary, white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}
.compliance-card:hover {
    transform: translateY(-5px);
}

/* ----- Stat highlight ----- */
.stat-highlight {
    font-size: 3rem;
    font-weight: 700;
    color: #E8963F;
    line-height: 1;
}
