/* Footer */
    .site-footer {
      width: 100%;
      padding: 0 0 48px;
      background: #eef3f7;
    }

    .footer-card {
      width: 100%;
      overflow: hidden;
      border-radius: 0;
      background: transparent;
      border-top: none;
      box-shadow: none;
    }

    .footer-features-bar {
      width: 100%;
      background: linear-gradient(90deg, #052a66 0%, #073b91 38%, #0b6b4f 72%, #168a45 100%);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-grid {
      width: 100%;
      background: var(--white);
      border-radius: 0;
      border-top: 1px solid rgba(8, 120, 201, 0.08);
    }

    .footer-grid-inner {
      display: grid;
      grid-template-columns: 1.05fr 1fr 0.9fr;
      gap: 0;
      align-items: stretch;
    }

    .footer-col {
      padding: 36px 32px 32px;
    }

    .footer-col + .footer-col {
      border-left: 1px solid rgba(8, 120, 201, 0.1);
    }

    .footer-about {
      position: relative;
      overflow: hidden;
    }

    .footer-about img {
      height: 72px;
      width: auto;
      margin-bottom: 18px;
      object-fit: contain;
    }

    .footer-tagline {
      margin-bottom: 12px;
      font-size: clamp(1.35rem, 2.4vw, 1.75rem);
      font-weight: 700;
      line-height: 1.35;
    }

    .footer-tagline .blue {
      color: var(--blue-dark);
    }

    .footer-tagline .green {
      color: var(--green);
    }

    .footer-desc {
      position: relative;
      z-index: 1;
      max-width: 340px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: var(--fs-xs);
      line-height: 1.75;
    }

    .footer-scene {
      position: relative;
      z-index: 0;
      height: 118px;
      margin-top: 28px;
      pointer-events: none;
    }

    .footer-scene::before {
      content: "";
      position: absolute;
      left: -12%;
      right: -8%;
      bottom: 0;
      height: 72px;
      border-radius: 50% 50% 0 0 / 100% 100% 0 0;
      background: linear-gradient(180deg, rgba(53, 169, 54, 0.12), rgba(53, 169, 54, 0.04));
    }

    .footer-scene::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 8px;
      height: 48px;
      background:
        radial-gradient(circle at 12% 100%, rgba(8, 120, 201, 0.18) 0 8px, transparent 9px),
        radial-gradient(circle at 28% 92%, rgba(53, 169, 54, 0.22) 0 10px, transparent 11px),
        radial-gradient(circle at 52% 100%, rgba(8, 120, 201, 0.16) 0 7px, transparent 8px),
        radial-gradient(circle at 72% 90%, rgba(53, 169, 54, 0.2) 0 9px, transparent 10px),
        linear-gradient(transparent 55%, rgba(255, 255, 255, 0.75) 55% 68%, transparent 68%),
        linear-gradient(145deg, transparent 42%, rgba(8, 120, 201, 0.12) 42% 54%, transparent 54%);
    }

    .footer-heading {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 0;
      color: var(--blue-dark);
      font-size: 1.02rem;
      font-weight: 700;
    }

    .footer-heading-wrap {
      position: relative;
      display: inline-block;
      margin-bottom: 22px;
    }

    .footer-heading-wrap .footer-heading {
      margin-bottom: 0;
    }

    .footer-heading-wrap::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 36px;
      height: 3px;
      border-radius: 999px;
      background: var(--green);
    }

    .footer-heading-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      border-radius: 50%;
      color: var(--blue);
    }

    .footer-heading-icon.is-line {
      background: var(--green);
      color: var(--white);
    }

    .footer-heading-icon svg {
      width: 13px;
      height: 13px;
      display: block;
    }

    .footer-contact-list {
      display: grid;
      gap: 0;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(8, 120, 201, 0.1);
    }

    .footer-contact-item:first-child {
      padding-top: 0;
    }

    .footer-contact-item:last-child {
      padding-bottom: 0;
      border-bottom: none;
    }

    .footer-contact-icon {
      flex: 0 0 44px;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--blue);
    }

    .footer-contact-icon.is-blue {
      background: var(--blue-soft);
    }

    .footer-contact-icon.is-green {
      background: var(--green-soft);
      color: var(--green);
    }

    .footer-contact-icon.is-teal {
      background: #e7f7f0;
      color: #1f9a4f;
    }

    .footer-contact-icon svg {
      width: 19px;
      height: 19px;
    }

    .footer-contact-item strong {
      display: block;
      margin-bottom: 3px;
      color: var(--text);
      font-size: var(--fs-md);
      font-weight: 600;
      line-height: 1.45;
    }

    .footer-contact-item span {
      color: var(--muted);
      font-size: var(--fs-2xs);
      line-height: 1.6;
    }

    .footer-contact-item a {
      color: inherit;
      text-decoration: none;
    }

    .footer-contact-item a:hover {
      color: var(--blue);
    }

    .footer-line {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-line .footer-heading-wrap {
      display: block;
      text-align: center;
    }

    .footer-line .footer-heading-wrap::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .footer-line-card {
      display: block;
      width: min(100%, 220px);
      padding: 16px 16px 14px;
      margin-bottom: 10px;
      border-radius: 18px;
      background: var(--white);
      border: 1px solid rgba(8, 120, 201, 0.1);
      box-shadow: 0 12px 28px rgba(12, 66, 104, 0.08);
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .footer-line-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(12, 66, 104, 0.12);
    }

    .footer-line-qr {
      width: 100%;
      margin-bottom: 12px;
    }

    .footer-line-qr img {
      width: 100%;
      height: auto;
      display: block;
    }

    .footer-line-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 10px 14px;
      border-radius: 999px;
      background: linear-gradient(90deg, #2ebf2f 0%, var(--green) 55%, var(--green-dark) 100%);
      color: #ffffff;
      font-size: var(--fs-xs);
      font-weight: 700;
      line-height: 1;
    }

    .footer-line-logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      border-radius: 50%;
      background: var(--white);
    }

    .footer-line-logo svg {
      width: 14px;
      height: 14px;
      display: block;
    }

    .footer-line-note {
      margin-bottom: 18px;
      color: var(--muted);
      font-size: var(--fs-2xs);
      line-height: 1.6;
    }

    .footer-social-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      width: 100%;
      padding-top: 4px;
    }

    .footer-social-row a {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      color: var(--blue-dark);
      transition: transform 0.2s ease;
    }

    .footer-social-row a:hover {
      transform: translateY(-2px);
    }

    .footer-social-row a.is-facebook {
      color: #1877f2;
    }

    .footer-social-row a.is-youtube {
      color: #ff0000;
    }

    .footer-social-row a.is-web {
      color: var(--blue);
    }

    .footer-social-row svg {
      width: 20px;
      height: 20px;
    }

    .footer-social-divider {
      width: 1px;
      height: 22px;
      background: rgba(8, 120, 201, 0.14);
    }

    .footer-features {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
    }

    .footer-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 24px 24px;
    }

    .footer-feature + .footer-feature {
      border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-feature-icon {
      flex: 0 0 40px;
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .footer-feature-icon.is-blue,
    .footer-feature-icon.is-green,
    .footer-feature-icon.is-orange {
      background: rgba(255, 255, 255, 0.1);
    }

    .footer-feature-icon svg {
      width: 18px;
      height: 18px;
    }

    .footer-feature strong {
      display: block;
      margin-bottom: 4px;
      color: #ffffff;
      font-size: var(--fs-md);
      font-weight: 700;
      line-height: 1.3;
    }

    .footer-feature span {
      display: block;
      color: rgba(255, 255, 255, 0.78);
      font-size: var(--fs-2xs);
      line-height: 1.45;
    }

    .footer-copyright {
      width: 100%;
      padding: 14px 0;
      border-top: 1px solid rgba(8, 120, 201, 0.1);
      background: #f7fafc;
      color: var(--muted);
      font-size: var(--fs-2xs);
      line-height: 1.6;
      text-align: center;
    }

    .footer-copyright .heart {
      color: var(--green);
      font-weight: 700;
    }
