  /* ── FOOTER ── */
  .cx-footer {
    position: relative;
    overflow: hidden;
    background: #0d1525;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
 
  /* Mesh background */
  .cx-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 10% 0%, rgba(255,107,43,0.09) 0%, transparent 70%),
      radial-gradient(ellipse 50% 60% at 90% 100%, rgba(0,200,255,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
 
  /* Grid noise overlay */
  .cx-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4) 20%, rgba(0,0,0,0.4) 80%, transparent);
    pointer-events: none;
  }
 
  .cx-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 32px 0;
  }
 
  /* ── TOP ROW ── */
  .cx-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
 
  /* Brand column */
  .cx-brand { display: flex; flex-direction: column; gap: 28px; }
 
  .cx-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
 
  .cx-logo-box {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #ff6b2b, #ff9a5c);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800; font-size: 18px;
    color: #fff;
    box-shadow: 0 0 24px rgba(255,107,43,0.18);
    flex-shrink: 0;
  }
 
  .cx-logo-name {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #e8edf5;
    letter-spacing: -0.3px;
  }
  .cx-logo-name span { color: #ff6b2b; }
 
  .cx-tagline {
    font-size: 13.5px;
    line-height: 1.7;
    color: #6b7fa3;
    max-width: 300px;
  }
 
  /* Flags */
  .cx-presence-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b7fa3;
    margin-bottom: 12px;
  }
 
  .cx-flags-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
 
  .cx-flag-item {
    width: 44px; height: 30px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: default;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    background: #111d30;
  }
  .cx-flag-item:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  }
 
  /* Contact */
  .cx-contact-list { display: flex; flex-direction: column; gap: 10px; }
  .cx-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #6b7fa3;
    transition: color 0.2s;
    text-decoration: none;
  }
  .cx-contact-link:hover { color: #e8edf5; }
  .cx-contact-link svg { color: #ff6b2b; flex-shrink: 0; }
 
  /* Social */
  .cx-socials { display: flex; gap: 10px; }
  .cx-social-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: #111d30;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: #6b7fa3;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
  }
  .cx-social-icon:hover {
    background: #ff6b2b;
    border-color: #ff6b2b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,107,43,0.18);
  }
 
  /* ── Nav columns ── */
  .cx-menu-col {}
  .cx-menu-title {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b2b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .cx-menu-title::before {
    content: '';
    display: block;
    width: 3px;
    height: 14px;
    background: #ff6b2b;
    border-radius: 2px;
  }
 
  .cx-menu-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
  .cx-menu-links a {
    font-size: 13.5px;
    color: #6b7fa3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.22s;
    position: relative;
  }
  .cx-menu-links a::before {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #00c8ff;
    transition: width 0.22s;
  }
  .cx-menu-links a:hover { color: #e8edf5; padding-left: 4px; }
  .cx-menu-links a:hover::before { width: 12px; }
 
  /* ── BOTTOM BAR ── */
  .cx-bottombar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 32px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .cx-copyright {
    font-size: 12.5px;
    color: #6b7fa3;
  }
  .cx-copyright span { color: #ff6b2b; font-weight: 500; }
 
  #cx-totop {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b2b, #ff9a5c);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255,107,43,0.18);
    transition: transform 0.25s, box-shadow 0.25s;
    flex-shrink: 0;
  }
  #cx-totop:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(255,107,43,0.18);
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .cx-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
  }
 
  @media (max-width: 640px) {
    .cx-wrapper { padding: 52px 20px 0; }
    .cx-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .cx-bottombar { padding: 20px; flex-direction: column; text-align: center; }
  }
 
  /* Animate in */
  .cx-grid > * {
    opacity: 0;
    transform: translateY(20px);
    animation: cxFadeUp 0.6s forwards;
  }
  .cx-grid > *:nth-child(1) { animation-delay: 0.05s; }
  .cx-grid > *:nth-child(2) { animation-delay: 0.15s; }
  .cx-grid > *:nth-child(3) { animation-delay: 0.25s; }
  .cx-grid > *:nth-child(4) { animation-delay: 0.35s; }
 
  @keyframes cxFadeUp {
    to { opacity: 1; transform: translateY(0); }
  }