html{ scroll-behavior:smooth; }
    body{ background: #EEF1F4; color:#1F2933; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial; }
    .container-edo{ max-width: 1120px; margin: 0 auto; padding: 0 20px; }
    .section{ padding: 64px 0; }
    @media(min-width:1024px){ .section{ padding: 88px 0; } }
    .eyebrow{ letter-spacing:.14em; text-transform:uppercase; font-size:12px; color:#6B7280; }
    .h1{ font-size: clamp(34px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.03em; }
    .h2{ font-size: clamp(26px, 2.6vw, 40px); line-height: 1.1; letter-spacing: -0.02em; }
    .lead{ font-size: 16px; line-height: 1.7; color:#6B7280; }
    .btn{ display:inline-flex; align-items:center; justify-content:center; border-radius: 999px; padding: 10px 16px; font-weight:600; font-size:14px; }
    .btn-primary{ background: #5B2D82; color:white; }
    .btn-primary:hover{ background:#4A236A; }
    .btn-ghost{ background:#E6E8EC; border:1px solid #D1D5DB; color:#5B2D82; }
    .btn-ghost:hover{ background:#DDE0E6; }
    .card{ background:white; border:1px solid rgba(17,24,39,.06); border-radius:18px; box-shadow: 0 8px 24px rgba(17,24,39,.10); }
    .philosophy{ position:relative; overflow:hidden; }
    .philosophy::before{
      content:""; position:absolute; inset:-2px; opacity:.22;
      background: radial-gradient(900px 220px at 10% 0%, rgba(123,63,160,.55), transparent 55%),
                  radial-gradient(700px 180px at 90% 100%, rgba(91,45,130,.45), transparent 60%);
      pointer-events:none;
    }
    .philosophy > *{ position:relative; }
    .chip{ display:inline-flex; gap:8px; align-items:center; border-radius:999px; padding:6px 10px; background:rgba(91,45,130,.10); color:#5B2D82; font-weight:600; font-size:12px; }
    .modal-backdrop{ position: fixed; inset: 0; background: rgba(17,24,39,.55); display:none; align-items:center; justify-content:center; padding: 18px; z-index: 60; }
    .modal-backdrop.open{ display:flex; }
    .modal{ width: min(980px, 100%); background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.28); }
    .modal-header{ display:flex; gap:14px; align-items:center; justify-content:space-between; padding: 16px 18px; border-bottom:1px solid rgba(17,24,39,.08); }
    .modal-body{ padding: 18px; }
    .xbtn{ width:38px; height:38px; border-radius:999px; display:grid; place-items:center; border:1px solid rgba(17,24,39,.12); background:#fff; }
    .xbtn:hover{ background:#F3F4F6; }
    .table-like{ width:100%; border-collapse: collapse; }
    .table-like td{ padding: 10px 12px; border-bottom:1px solid rgba(17,24,39,.08); font-size:14px; }
    .table-like td:first-child{ color:#6B7280; width: 160px; }
    .social a{ display:inline-flex; width:36px; height:36px; border-radius:999px; border:1px solid rgba(17,24,39,.12); align-items:center; justify-content:center; }
    .social a:hover{ background:#F3F4F6; }


/* --- Service cards icons --- */
.services-card, .benefits-card {
    position: relative;
    overflow: hidden;
}

.services-card::after, .benefits-card::after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 120px;
    height: 120px;
    background: url("assets/icons/services-icons.png") center/cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

@media (max-width: 768px) {
    .services-card::after, .benefits-card::after {
        width: 90px;
        height: 90px;
        opacity: 0.10;
    }
}
