.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    margin-top: 80px;
    border-top: 1px solid rgba(90,180,233,0.18);
  }

  .footer__glow {
    height: 3px;
    background: radial-gradient(circle at 50% 50%,
      rgba(90,180,233,0.9),
      rgba(90,180,233,0.0) 65%);
    opacity: 0.75;
  }

  .footer__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 40px 20px 28px 20px;
  }

  .footer__grid {
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(160px, 1fr));
  }

  @media (max-width: 900px) {
    .footer__grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 640px) {
    .footer__grid {
      grid-template-columns: 1fr;
    }
  }

  .footer__brand {
    background: linear-gradient(135deg, var(--footer-surface), var(--footer-surface-soft));
    border-radius: 18px;
    padding: 18px 18px 20px 18px;
    box-shadow: var(--footer-shadow);
    border: 1px solid rgba(90,180,233,0.18);
  }

  .footer__logo {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .footer__text {
    margin: 0 0 10px 0;
    color: var(--footer-muted);
    font-size: 0.95rem;
  }

  .footer__micro {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(173,186,204,0.95);
  }

  .footer__block {
    font-size: 0.95rem;
  }

  .footer__title {
    margin: 0 0 12px 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
  }

  .footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
  }

  .footer__list--contact li {
    line-height: 1.4;
  }

  .footer a {
    color: var(--footer-muted);
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
  }

  .footer a:hover {
    color: var(--footer-accent);
    text-shadow: 0 0 8px rgba(90,180,233,0.7);
  }

  .footer__cta {
    display: inline-flex;
    margin-top: 14px;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(90,180,233,0.8);
    color: #ffffff;
    background: radial-gradient(circle at 0% 0%,
      rgba(90,180,233,0.4),
      rgba(90,180,233,0.15),
      transparent 80%);
    box-shadow: 0 0 18px rgba(90,180,233,0.45);
    align-items: center;
    gap: 6px;
  }

  .footer__cta:hover {
    box-shadow: 0 0 26px rgba(90,180,233,0.75);
  }

  .footer__social {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
  }

  .footer__bottom {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--footer-line);
    font-size: 0.85rem;
    color: var(--footer-muted);
    text-align: center;
  }

  .footer__dev {
    margin-top: 4px;
    font-size: 0.8rem;
  }
