.af-root{
    
    --af-bg: #0f2f38;
    --af-bg-soft: #17343d;
    --af-surface: rgba(255,255,255,0.04);
    --af-surface-hover: rgba(255,255,255,0.08);
    --af-border: rgba(255,255,255,0.10);
    --af-border-soft: rgba(255,255,255,0.06);

    --af-text: #f5f3eb;
    --af-text-soft: #d9dfd4;
    --af-text-muted: rgba(245,243,235,0.72);

    --af-accent: #dfe7d8;
    --af-accent-strong: #eef2ea;
    --af-accent-text: #17343d;

    --af-link: #f5f3eb;
    --af-link-hover: #dfe7d8;

    --af-max-width: 1380px;
    --af-radius: 20px;
    --af-shadow: 0 18px 40px rgba(0,0,0,0.18);
    --af-transition: .28s ease;
    --af-font-family: "Inter", "Segoe UI", Arial, sans-serif;

    --af-logo-size: 92px;
    --af-logo-size-mobile: 72px;
  }
.af-root,.af-root *{
    box-sizing:border-box;
  }
.af-root{
    position:relative;
    width:100%;
    background:linear-gradient(180deg, var(--af-bg) 0%, #0b2730 100%);
    color:var(--af-text);
    font-family:var(--af-font-family);
    overflow:hidden;
    margin:0 !important;
  }
.af-root a{
    text-decoration:none;
    color:inherit;
  }
.af-root .af-container{
    max-width:var(--af-max-width);
    margin:0 auto;
    padding-left:18px;
    padding-right:18px;
  }
.af-root .af-topline{
    height:4px;
    background:linear-gradient(90deg, #dfe7d8 0%, #b8c7b1 50%, #dfe7d8 100%);
  }
.af-root .af-main{
    padding:34px 0 20px;
  }
.af-root .af-grid{
    display:grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 1fr) minmax(260px, 1fr);
    gap:22px;
    align-items:stretch;
  }
.af-root .af-card{
    background:var(--af-surface);
    border:1px solid var(--af-border-soft);
    border-radius:var(--af-radius);
    padding:22px 20px;
    box-shadow:var(--af-shadow);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    min-width:0;
    height:100%;
  }
.af-root .af-brand{
    display:flex;
    flex-direction:column;
    gap:18px;
  }
.af-root .af-brand-head{
    display:flex;
    align-items:center;
    gap:16px;
    min-width:0;
  }
.af-root .af-logo{
    width:var(--af-logo-size);
    height:var(--af-logo-size);
    border-radius:50%;
    overflow:hidden;
    flex:0 0 auto;
    background:rgba(255,255,255,0.08);
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,0.12);
  }
.af-root .af-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
  }
.af-root .af-brand-copy{
    min-width:0;
  }
.af-root .af-eyebrow{
    display:block;
    font-size:11px;
    line-height:1.1;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--af-text-soft);
    font-weight:700;
    margin-bottom:8px;
  }
.af-root .af-title,.af-root .af-title-line2{
    display:block;
    font-size:29px;
    line-height:1.02;
    font-weight:900;
    letter-spacing:-.03em;
    color:#ffffff;
  }
.af-root .af-description{
    margin:0;
    color:var(--af-text-soft);
    font-size:15px;
    line-height:1.65;
  }
.af-root .af-contact-list{
    display:grid;
    gap:10px;
  }
.af-root .af-contact-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:var(--af-text-soft);
    font-size:14px;
    line-height:1.5;
  }
.af-root .af-contact-item i{
    width:18px;
    margin-top:2px;
    color:var(--af-accent);
    flex:0 0 auto;
    text-align:center;
  }
.af-root .af-heading{
    margin:0 0 14px;
    font-size:15px;
    line-height:1.2;
    font-weight:800;
    color:#ffffff;
    letter-spacing:.01em;
  }
.af-root .af-links{
    display:grid;
    gap:8px;
  }
.af-root .af-link{
    display:flex;
    align-items:center;
    gap:10px;
    min-height:40px;
    padding:8px 10px;
    border-radius:12px;
    color:var(--af-link);
    transition:
      background-color var(--af-transition),
      color var(--af-transition),
      transform var(--af-transition);
  }
.af-root .af-link:hover{
    background:var(--af-surface-hover);
    color:var(--af-link-hover);
    transform:translateX(2px);
  }
.af-root .af-link i{
    width:16px;
    text-align:center;
    color:var(--af-accent);
    font-size:13px;
    flex:0 0 auto;
  }
.af-root .af-social{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:18px;
  }
.af-root .af-social-link{
    width:42px;
    height:42px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    color:#ffffff;
    transition:
      background-color var(--af-transition),
      color var(--af-transition),
      transform var(--af-transition),
      border-color var(--af-transition);
  }
.af-root .af-social-link:hover{
    background:var(--af-accent);
    color:var(--af-accent-text);
    border-color:var(--af-accent);
    transform:translateY(-2px);
  }
.af-root .af-social-link i{
    font-size:16px;
  }
.af-root .af-bottom{
    border-top:1px solid var(--af-border);
    margin-top:24px;
    padding-top:16px;
  }
.af-root .af-bottom-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
  }
.af-root .af-bottom-left,.af-root .af-bottom-right{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    min-width:0;
  }
.af-root .af-mini-link{
    color:var(--af-text-muted);
    font-size:13px;
    transition:color var(--af-transition);
  }
.af-root .af-mini-link:hover{
    color:var(--af-accent);
  }
.af-root .af-sep{
    width:1px;
    height:12px;
    background:rgba(255,255,255,0.14);
  }
.af-root .af-copy{
    color:var(--af-text-muted);
    font-size:13px;
    line-height:1.5;
  }
.af-root .af-credit{
    color:rgba(245,243,235,0.58);
    font-size:12px;
    line-height:1.5;
  }
.af-root .af-credit a{
    color:inherit;
    transition:color var(--af-transition);
  }
.af-root .af-credit a:hover{
    color:var(--af-accent);
  }
@media (max-width: 1100px){.af-root .af-grid{
      grid-template-columns:1fr 1fr;
    }
.af-root .af-brand{
      grid-column:1 / -1;
    }
.af-root .af-title,.af-root .af-title-line2{
      font-size:24px;
    }
}
@media (max-width: 640px){.af-root .af-container{
      padding-left:14px;
      padding-right:14px;
    }
.af-root .af-main{
      padding:28px 0 18px;
    }
.af-root .af-grid{
      grid-template-columns:1fr;
      gap:16px;
    }
.af-root .af-card{
      padding:18px 16px;
      border-radius:18px;
    }
.af-root .af-brand-head{
      gap:12px;
    }
.af-root .af-logo{
      width:var(--af-logo-size-mobile);
      height:var(--af-logo-size-mobile);
    }
.af-root .af-eyebrow{
      font-size:10px;
      margin-bottom:6px;
    }
.af-root .af-title,.af-root .af-title-line2{
      font-size:21px;
    }
.af-root .af-description{
      font-size:14px;
    }
.af-root .af-bottom-row{
      align-items:flex-start;
      flex-direction:column;
    }
}
