 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500&display=swap');

  :root {
    --ftr-navy:  #0a0820;
    --ftr-navy2: #0e0b2e;
    --ftr-green: #d1b937;
    --ftr-gold:  #c8a96e;
  }

  /* ══ WAVE ══ */
  .ftr-wave {
    background: #d1b937; /* match page bg above */
    line-height: 0;
    margin-bottom: -2px;
  }
  .ftr-wave svg { display: block; width: 100%; height: 80px; }

  /* ══ BODY ══ */
  .ftr-body {
    background: var(--ftr-navy);
    position: relative;
    overflow: hidden;
  }

  /* background grid */
  .ftr-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(169,208,57,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(169,208,57,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
  }

  /* green glow top-right */
  .ftr-body::after {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(169,208,57,0.07);
    filter: blur(100px);
    pointer-events: none;
  }

  .ftr-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 80px 56px 64px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 56px;
    position: relative;
    z-index: 1;
  }

  /* ══ COL TITLE ══ */
  .ftr-col-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ftr-green);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  /* ══ BRAND COL ══ */
  .ftr-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 24px;
  }

  .ftr-logo-mark {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: var(--ftr-navy2);
    border: 1px solid rgba(169,208,57,0.2);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }

  .ftr-logo-mark::before {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 20px; height: 20px;
    background: var(--ftr-green);
    border-radius: 8px 0 12px 0;
  }

  .ftr-logo-mark span {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    position: relative;
    z-index: 1;
  }

  .ftr-logo-text { display: flex; flex-direction: column; line-height: 1.15; }

  .ftr-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.01em;
  }

  .ftr-logo-sub {
    font-size: 10px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .ftr-brand-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
  }

  /* ══ SOCIALS ══ */
  .ftr-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
  }

  .ftr-social {
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .ftr-social svg { width: 16px; height: 16px; }

  .ftr-social:hover {
    background: var(--ftr-green);
    border-color: var(--ftr-green);
    color: var(--ftr-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(169,208,57,0.25);
  }

  /* ══ CERTIFICATIONS ══ */
  .ftr-certs {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ftr-cert {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
  }

  .ftr-cert svg {
    width: 14px; height: 14px;
    stroke: var(--ftr-green);
    flex-shrink: 0;
  }

  /* ══ NAV LINKS ══ */
  .ftr-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .ftr-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.2s, padding-left 0.2s;
  }

  .ftr-links li a:hover {
    color: var(--ftr-green);
    padding-left: 6px;
  }

  .ftr-links li a span {
    font-size: 14px;
    flex-shrink: 0;
    opacity: 0.7;
  }

  /* ══ CONTACT ITEMS ══ */
  .ftr-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
  }

  .ftr-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .ftr-contact-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: rgba(169,208,57,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .ftr-contact-icon svg {
    width: 15px; height: 15px;
    fill: var(--ftr-green);
  }

  .ftr-contact-item small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    margin-bottom: 2px;
  }

  .ftr-contact-item p,
  .ftr-contact-item a {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
  }

  .ftr-contact-item a:hover { color: var(--ftr-green); }

  /* ══ CTA BUTTON ══ */
  .ftr-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--ftr-green);
    color: var(--ftr-navy);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    width: 100%;
    justify-content: center;
  }

  .ftr-cta-btn svg { width: 15px; height: 15px; }

  .ftr-cta-btn:hover {
    background: #bde44e;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(169,208,57,0.3);
  }

  /* ══ BOTTOM BAR ══ */
  .ftr-bottom {
    background: rgba(0,0,0,0.35);
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
  }

  .ftr-bottom-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 20px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .ftr-copy {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
  }

  .ftr-copy strong { color: rgba(255,255,255,0.55); font-weight: 400; }

  .ftr-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .ftr-bottom-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

  .ftr-bottom-links a:hover { color: var(--ftr-green); }
  .ftr-bottom-links span { color: rgba(255,255,255,0.15); }

  /* Angola badge */
  .ftr-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
  }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 1100px) {
    .ftr-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .ftr-col--brand { grid-column: 1 / -1; }
  }

  @media (max-width: 640px) {
    .ftr-inner { grid-template-columns: 1fr; padding: 56px 24px 48px; gap: 36px; }
    .ftr-bottom-inner { padding: 18px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
    .ftr-wave svg { height: 50px; }
  }