  .sy-hero-modern {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4.5rem;
    background:
      linear-gradient(135deg, rgba(27,37,54,.96), rgba(45,60,90,.92)),
      radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 35%);
    color: #fff;
  }

  .sy-hero-modern::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.04), rgba(255,255,255,0));
    pointer-events: none;
  }

  .sy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
  }

  .sy-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: .4rem .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .sy-hero-modern h1 {
    font-size: clamp(2.2rem, 4vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .sy-hero-modern p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,.88);
    margin-bottom: 1.75rem;
  }

  .sy-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1B2536;
    margin-bottom: .5rem;
  }

  .sy-section-subtitle {
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 2.5rem;
  }

  .sy-card {
    border: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
    background: #fff;
  }

  .sy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  }

  .sy-card .card-body {
    padding: 1.75rem;
  }

  .sy-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1B2536;
    margin-bottom: .75rem;
  }

  .sy-card-text {
    color: #5f6b7a;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .sy-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e9f2ff, #f4f8ff);
    color: #2d3c5a;
    font-size: 1.4rem;
    font-weight: 700;
  }

  .sy-mini-card .card-body {
    padding: 1.4rem 1.25rem;
  }

  .sy-mini-card .sy-card-title {
    font-size: 1rem;
    min-height: 48px;
  }

  .sy-soft-section {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
  }

  .sy-admin-link {
    margin: 2rem 0 1rem;
    font-size: .95rem;
  }

  .sy-admin-link a {
    color: #6c757d;
    text-decoration: none;
  }

  .sy-admin-link a:hover {
    color: #1B2536;
    text-decoration: underline;
  }

  @media (max-width: 767.98px) {
    .sy-hero-modern {
      padding: 4rem 0 3.5rem;
      text-align: center;
    }

    .sy-hero-content {
      margin: 0 auto;
    }

    .sy-card .card-body,
    .sy-mini-card .card-body {
      padding: 1.25rem;
    }
  }