:root {
    --brand: #1570a2;
    --brand-dark: #0b3550;
    --ink: #0f172a;
    --muted: #64748b;
    --bg: #f5f7fb;
}

body {
    background: var(--bg);
    color: var(--ink);
}

/* ================= HERO ================= */
.hero {
    background:
        radial-gradient(circle at top left, rgba(21, 112, 162, .35), transparent 40%),
        linear-gradient(135deg, #020617, #020617);
    padding: 120px 0 160px;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-image: url(../img/about-ca-interprises.jpg);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero p {
    max-width: 920px;
    margin: 20px auto 0;
    font-size: 19px;
    color: #cbd5f5;
}

/* ================= GLASS PANEL ================= */
.glass-panel {
    margin-top: -100px;
    background: #fff;
    backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 45px;
    box-shadow:
        0 40px 80px rgba(15, 23, 42, .15),
        inset 0 1px 0 rgba(255, 255, 255, .6);
}

/* ================= TITLE ================= */
.section-title {
    margin: 90px 0 40px;
    text-align: center;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
}

.section-title p {
    color: var(--muted);
    margin-top: 8px;
}

/* ================= BENEFIT CHIPS ================= */
.chips {
    background: #fff;
    padding: 15px 15px;
    border-radius: 60px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, .08);
    text-align: center;
}

.chips span {
    display: inline-block;
    margin: 6px 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
    background: rgba(21, 112, 162, .08);
    border-radius: 40px;
}

/* ================= PREMIUM CARDS ================= */
.premium-card {
    height: 100%;
    background: #fff;
    border-radius: 26px;
    padding: 40px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .12);
    transition: .4s cubic-bezier(.2, .8, .2, 1);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 112, 162, .15), transparent);
    opacity: 0;
    transition: .4s;
}

.premium-card:hover {
    transform: translateY(-10px);
}

.premium-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 18px;
}

.premium-card h5 {
    font-size: 20px;
    font-weight: 700;
}

.premium-card ul {
    padding-left: 18px;
    margin-top: 15px;
}

.premium-card ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #334155;
}

.outcome {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
    font-weight: 600;
    color: #0f172a;
}