*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; font-family: 'IBM Plex Sans', sans-serif; }
    html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: rgba(0,0,0,0); }
    body { font-family: 'IBM Plex Sans', sans-serif; font-size: 16px; line-height: 1.42857; background: #0d1117; color: #fff; overflow-x: hidden; padding-top: 61px; }

    /* ── Hero ── */
    .hero-bg {
      background-image: url('assets/hero-background.png');
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
    }

    /* ── Buttons ── */
    .btn-yellow {
      background: #F9CD41;
      color: #0d1117;
      font-weight: 700;
      border-radius: 8px;
      padding: 12px 26px;
      font-size: 15.5px;
      display: inline-block;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.15s ease, transform 0.12s ease;
    }
    .btn-yellow:hover  { background: #e8b830; transform: translateY(-2px); }
    .btn-yellow:active { transform: translateY(0); }
    .btn-yellow:focus-visible { outline: 2px solid #F9CD41; outline-offset: 3px; }

    .btn-white {
      background: #fff;
      color: #0d1117;
      font-weight: 700;
      border-radius: 8px;
      padding: 12px 26px;
      font-size: 15.5px;
      display: inline-block;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.15s ease, transform 0.12s ease;
    }
    .btn-white:hover  { background: #e8ecf5; transform: translateY(-2px); }
    .btn-white:active { transform: translateY(0); }
    .btn-white:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

    .btn-blue {
      background: #2255e8;
      color: #fff;
      font-weight: 700;
      border-radius: 99px;
      padding: 14px 52px;
      font-size: 17px;
      display: inline-block;
      text-decoration: none;
      transition: background 0.15s ease, transform 0.12s ease;
    }
    .btn-blue:hover  { background: #3366ff; transform: translateY(-2px); }
    .btn-blue:active { transform: translateY(0); }
    .btn-blue:focus-visible { outline: 2px solid #2255e8; outline-offset: 3px; }

    .read-more {
      color: #2255e8;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: color 0.15s ease;
    }
    .read-more:hover { color: #3366ff; }

    /* ── News Cards ── */
    .news-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #e8ecf2;
      box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    .news-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 10px 15px rgba(0,0,0,0.08);
    }

    /* ── Carousel card responsive widths ── */
    .carousel-card { width: 100%; }
    @media (min-width: 640px) {
      .carousel-card { width: calc((100% - 30px) / 2); }
    }
    @media (min-width: 1024px) {
      .carousel-card { width: calc((100% - 60px) / 3); }
    }

    /* ── Partner cards ── */
    .partner-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #e0e6ef;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

    /* ── Footer ── */
    .footer-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      align-items: center;
    }

    .footer-links-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px 16px;
      padding: 28px 16px 36px;
    }

    @media (min-width: 640px) {
      .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 28px 32px 36px;
      }
    }

    @media (min-width: 1024px) {
      .footer-links-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
        padding: 28px 32px 36px;
      }
    }

    .footer-link {
      color: #7a8da8;
      font-size: 14.5px;
      line-height: 2.1;
      text-decoration: none;
      display: block;
      transition: color 0.15s ease;
    }
    .footer-link:hover { color: #fff; }

    .social-btn {
      display: flex;
      align-items: center;
      gap: 9px;
      color: #7a8da8;
      font-size: 14.5px;
      text-decoration: none;
      transition: color 0.15s ease;
    }
    .social-btn:hover { color: #fff; }

    .social-icon {
      width: 28px; height: 28px;
      background: #1e2d45;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.15s ease;
    }
    .social-btn:hover .social-icon { background: #263c5a; }