.ampro-footer {
    color: rgba(255,255,255,0.92);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    background-color: var(--c-dark, #0f0f12);
    --fc-line: rgba(255,255,255,0.09);
    --fc-line-strong: rgba(255,255,255,0.16);
    --fc-text-2: rgba(255,255,255,0.6);
    --fc-text-3: rgba(255,255,255,0.42);
  }
  .ampro-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.45;
  }
  .ampro-footer .container { position: relative; z-index: 2; }

  /* Top CTA strip */
  .af-cta {
    border-bottom: 1px solid var(--fc-line);
    padding-top: clamp(48px, 6vw, 72px);
    padding-bottom: clamp(48px, 6vw, 72px);
  }
  .af-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: center;
  }
  .af-cta-eyebrow {
    font-family: var(--f-mono, "JetBrains Mono", monospace);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--fc-text-2);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }
  .af-cta-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #eb2347;
    box-shadow: 0 0 0 4px rgba(235, 35, 71, 0.18);
    animation: af-pulse 2.4s ease-in-out infinite;
  }
  @keyframes af-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(235, 35, 71, 0.18); }
    50% { box-shadow: 0 0 0 8px rgba(235, 35, 71, 0.05); }
  }
  .af-cta-headline {
    font-family: var(--f-sans, "Geist", sans-serif);
    font-weight: 500;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
    max-width: 22ch;
  }
  .af-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 280px;
  }
  .af-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 17px 22px;
    font-family: var(--f-sans, "Geist", sans-serif);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  .af-btn .arrow {
    display: inline-block;
    transition: transform 0.2s ease;
  }
  .af-btn:hover .arrow { transform: translateX(4px); }
  .af-btn-primary {
    background: #eb2347;
    color: #fff;
    --corner-cut: 14px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--corner-cut)), calc(100% - var(--corner-cut)) 100%, 0 100%);
  }
  .af-btn-primary:hover { background: #d11e3e; }
  .af-btn-primary .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #fff;
    margin-right: 8px;
  }
  .af-btn-secondary {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.92);
  }
  .af-btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.24);
  }
  .af-cta-actions-meta {
    font-family: var(--f-mono, "JetBrains Mono", monospace);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--fc-text-3);
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* Main grid with widget separators */
  .af-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 0;
    padding-top: clamp(56px, 6vw, 80px);
    padding-bottom: 56px;
    position: relative;
  }
  .af-col {
    padding: 0 36px;
    border-left: 1px solid var(--fc-line);
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
  .af-col:first-child {
    padding-left: 0;
    border-left: 0;
  }
  .af-col:last-child {
    padding-right: 0;
  }

  /* Brand column */
  .af-brand-logo {
    height: 32px;
    width: auto;
    display: block;
  }
  .af-claim {
    font-family: var(--f-sans, "Geist", sans-serif);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 0;
    max-width: 22ch;
  }
  .af-offices {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 4px;
  }
  .af-office {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
  }
  .af-office-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    flex-shrink: 0;
  }
  .af-office-icon svg { width: 13px; height: 13px; }
  .af-office-icon.is-hq {
    background: rgba(235,35,71,0.12);
    border-color: rgba(235,35,71,0.3);
    color: #eb2347;
  }
  .af-office .city {
    font-family: var(--f-sans, "Geist", sans-serif);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .af-office .city .tag {
    font-family: var(--f-mono, monospace);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #eb2347;
    border: 1px solid rgba(235,35,71,0.4);
    padding: 2px 6px;
    border-radius: 2px;
    background: rgba(235,35,71,0.08);
  }
  .af-office .addr {
    font-family: var(--f-mono, "JetBrains Mono", monospace);
    font-size: 12px;
    color: var(--fc-text-2);
    margin-top: 4px;
    line-height: 1.5;
  }

  /* Heading style */
  .af-heading {
    font-family: var(--f-mono, "JetBrains Mono", monospace);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-text-3);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .af-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--fc-line);
  }

  /* Link list */
  .af-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
  }
  .af-links li {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .af-links a {
    font-family: var(--f-sans, "Geist", sans-serif);
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .af-links a::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--fc-text-3);
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.15s ease, transform 0.15s ease;
  }
  .af-links a:hover {
    color: #eb2347;
  }
  .af-links a:hover::before {
    background: #eb2347;
    transform: scale(1.5);
  }

  /* Reg-data block */
  .af-reg {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .af-reg-name {
    font-family: var(--f-sans, "Geist", sans-serif);
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 4px;
  }
  .af-reg-row {
    display: grid;
    grid-template-columns: 22px 56px 1fr;
    gap: 10px;
    align-items: center;
    font-family: var(--f-mono, "JetBrains Mono", monospace);
    font-size: 12px;
  }
  .af-reg-row .ic {
    width: 22px; height: 22px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
  }
  .af-reg-row .ic svg { width: 11px; height: 11px; }
  .af-reg-row .k { color: var(--fc-text-3); letter-spacing: 0.08em; }
  .af-reg-row .v { color: rgba(255,255,255,0.92); letter-spacing: 0.02em; }

  /* Social */
  .af-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .af-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.18s ease;
  }
  .af-social a:hover {
    background: #eb2347;
    border-color: #eb2347;
    color: #fff;
    transform: translateY(-2px);
  }
  .af-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  /* Contact widget */
  .af-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .af-contact a {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: center;
    font-family: var(--f-mono, "JetBrains Mono", monospace);
    font-size: 13px;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    transition: color 0.15s ease;
  }
  .af-contact a .ic {
    width: 22px; height: 22px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
  }
  .af-contact a .ic svg { width: 11px; height: 11px; }
  .af-contact a:hover { color: #eb2347; }
  .af-contact a:hover .ic { color: #eb2347; border-color: rgba(235,35,71,0.3); }

  /* Bottom bar */
  .af-bottom {
    border-top: 1px solid var(--fc-line);
    padding-top: 22px;
    padding-bottom: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-family: var(--f-mono, "JetBrains Mono", monospace);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--fc-text-3);
  }
  .af-bottom a {
    color: var(--fc-text-3);
    text-decoration: none;
    transition: color 0.15s ease;
  }
  .af-bottom a:hover { color: #fff; }
  .af-legal {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
  }
  .af-bottom-meta {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .af-bottom-meta .dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: #2bcb6e;
    box-shadow: 0 0 8px rgba(43, 203, 110, 0.5);
  }

  /* Floating accent bar at the very bottom */
  .af-accent-bar {
    height: 4px;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(235,35,71,0.6) 20%,
      #eb2347 50%,
      rgba(235,35,71,0.6) 80%,
      transparent 100%);
  }

  @media (max-width: 1100px) {
    .af-main { grid-template-columns: 1fr 1fr; }
    .af-col { padding: 0 28px; border-top: 0; }
    .af-col:nth-child(2n+1) { border-left: 0; padding-left: 0; }
    .af-col:nth-child(n+3) { padding-top: 40px; margin-top: 40px; border-top: 1px solid var(--fc-line); }
    .af-col:nth-child(3) { padding-left: 0; }
  }
  @media (max-width: 720px) {
    .af-cta-inner { grid-template-columns: 1fr; gap: 32px; }
    .af-cta-actions { min-width: 0; }
    .af-main { grid-template-columns: 1fr; }
    .af-col { padding: 0; border-left: 0 !important; }
    .af-col + .af-col { padding-top: 36px; margin-top: 36px; border-top: 1px solid var(--fc-line); }
    .af-bottom { flex-direction: column; align-items: flex-start; }
  }
