body {
  background: #ffffff;
  color: #111e30;
}

/* ── AG BUTTONS ── */
.ag-btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  background: #244b81; color: #fff;
  padding: 0.82rem 2rem; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  transition: all 0.25s; box-shadow: 0 4px 20px rgba(36,75,129,0.28);
}
.ag-btn-solid:hover { background: #1a3660; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(36,75,129,0.4); }

.ag-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #244b81;
  padding: 0.78rem 2rem; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: 2px solid rgba(36,75,129,0.35); text-decoration: none;
  transition: all 0.25s;
}
.ag-btn-ghost:hover { border-color: #244b81; background: rgba(36,75,129,0.05); transform: translateY(-1px); }

/* ── LABEL ── */
.ag-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #244b81; background: rgba(36,75,129,0.08); border: 1px solid rgba(36,75,129,0.2);
  padding: 0.3rem 0.9rem; border-radius: 100px; margin-bottom: 1rem;
}

/* ── HERO ── */
.ag-hero {
  padding: 9rem 0 5rem; 
  position: relative; 
  overflow: hidden; 
  background: #fff;
}
.ag-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(36,75,129,0.055) 1px, transparent 0);
  background-size: 32px 32px;
}
.ag-hero::after {
  content: ''; position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(36,75,129,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.ag-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.ag-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #244b81; margin-bottom: 1.5rem;
}
.ag-eyebrow-line { width: 28px; height: 2px; background: #244b81; border-radius: 2px; }
.ag-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; color: #244b81; margin-bottom: 1.5rem;
}
.ag-hero h1 strong { color: #111e30; font-weight: 800; }
.ag-hero-sub { color: #3e5470; font-size: 1.08rem; line-height: 1.8; max-width: 500px; margin-bottom: 2.5rem; }
.ag-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 2rem; }
.ag-trust { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.ag-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: #8295af; font-weight: 500; }

/* Agent Network Visual */
.ag-hero-visual { display: flex; justify-content: center; align-items: center; }
.ag-network-wrap { position: relative; width: 440px; height: 440px; }
.ag-net-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.ag-net-node {
  position: absolute; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.ag-node-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px solid rgba(36,75,129,0.3);
  animation: node-pulse 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes node-pulse {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.25); opacity: 0; }
}
.ag-node-inner {
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 700; position: relative;
}
.ag-node-lbl { font-size: 0.68rem; font-weight: 600; color: #244b81; font-family: 'DM Sans', sans-serif; white-space: nowrap; }

/* ── WHAT IS ── */
.ag-what { padding: 6rem 0; background: #f2f6fc; }
.ag-what-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ag-what-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.025em; color: #244b81; margin-bottom: 1.25rem; }
.ag-what-text p  { color: #3e5470; font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.ag-what-text strong { color: #244b81; }
.ag-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.5rem; }
.ag-chip { background: rgba(36,75,129,0.08); color: #244b81; border: 1px solid rgba(36,75,129,0.16); padding: 0.32rem 0.85rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600; }
.ag-vs {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(36,75,129,0.1), 0 0 0 1px rgba(36,75,129,0.07);
}
.ag-vs-cols { display: flex; }
.ag-vs-col { flex: 1; padding: 1.75rem; }
.ag-vs-col:first-child { border-right: 1px solid #e8eef8; }
.ag-vs-head { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding-bottom: 0.75rem; border-bottom: 2px solid; margin-bottom: 1.25rem; }
.ag-vs-col:first-child .ag-vs-head { color: #8295af; border-color: #dde6f2; }
.ag-vs-col:last-child  .ag-vs-head { color: #244b81; border-color: #244b81; }
.ag-vs-item { display: flex; align-items: flex-start; gap: 9px; font-size: 0.87rem; color: #3e5470; margin-bottom: 0.75rem; line-height: 1.5; }
.vs-n { color: #b8c8dc; flex-shrink: 0; margin-top: 2px; }
.vs-y { color: #244b81; flex-shrink: 0; margin-top: 2px; }

/* ── PILLARS ── */
.ag-pillars { padding: 6rem 0; background: #fff; }
.ag-pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.ag-pillar {
  border-radius: 18px; padding: 2rem; border: 1px solid rgba(36,75,129,0.1);
  background: #fff; position: relative; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.ag-pillar-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: #244b81; transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.ag-pillar:hover { transform: translateY(-7px); box-shadow: 0 20px 48px rgba(36,75,129,0.14); border-color: rgba(36,75,129,0.2); }
.ag-pillar:hover .ag-pillar-bar { transform: scaleX(1); }
.ag-pillar-num { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; color: rgba(36,75,129,0.07); line-height: 1; margin-bottom: 0.75rem; }
.ag-pillar-ico { width: 54px; height: 54px; border-radius: 14px; background: rgba(36,75,129,0.08); display: flex; align-items: center; justify-content: center; color: #244b81; margin-bottom: 1.25rem; }
.ag-pillar h3 { font-size: 1.08rem; font-weight: 700; color: #244b81; margin-bottom: 0.55rem; }
.ag-pillar p  { color: #3e5470; font-size: 0.87rem; line-height: 1.7; }

/* ── HOW IT WORKS ── */
.ag-how { padding: 6rem 0; background: #f2f6fc; }
.ag-how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.ag-how-intro h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.025em; color: #244b81; margin-bottom: 1.25rem; }
.ag-how-intro p  { color: #3e5470; font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.ag-how-stat { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.ag-how-kpi-val { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: #244b81; line-height: 1; }
.ag-how-kpi-lbl { font-size: 0.83rem; color: #8295af; margin-top: 2px; }
.ag-steps { display: flex; flex-direction: column; position: relative; }
.ag-steps::before {
  content: ''; position: absolute; left: 22px; top: 22px; bottom: 22px; width: 2px;
  background: linear-gradient(to bottom, #244b81 0%, rgba(36,75,129,0.12) 100%);
}
.ag-step { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.25rem 0; position: relative; }
.ag-step-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: #244b81; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(36,75,129,0.35); position: relative; z-index: 1;
}
.ag-step-body h4 { font-size: 1rem; font-weight: 700; color: #244b81; margin-bottom: 0.3rem; padding-top: 0.6rem; }
.ag-step-body p  { color: #3e5470; font-size: 0.87rem; line-height: 1.65; }

/* ── USE CASES ── */
.ag-cases { padding: 6rem 0; background: #fff; }
.ag-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.ag-case { border-radius: 18px; overflow: hidden; border: 1px solid rgba(36,75,129,0.1); background: #fff; transition: all 0.3s; }
.ag-case:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(36,75,129,0.14); border-color: rgba(36,75,129,0.22); }
.ag-case-top { background: #244b81; padding: 2rem; }
.ag-case-top-ico { color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.ag-case-top h3  { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.ag-case-top span { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.ag-case-body { padding: 1.75rem; }
.ag-case-body p { color: #3e5470; font-size: 0.9rem; line-height: 1.72; margin-bottom: 1.5rem; }
.ag-result { display: flex; align-items: center; gap: 12px; padding: 0.9rem 1rem; background: rgba(36,75,129,0.05); border-radius: 10px; border: 1px solid rgba(36,75,129,0.1); }
.ag-result-val { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.5rem; color: #244b81; flex-shrink: 0; }
.ag-result-lbl { font-size: 0.82rem; color: #3e5470; line-height: 1.4; }

/* ── CAPABILITIES ── */
.ag-caps { padding: 6rem 0; background: #f2f6fc; }
.ag-caps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ag-cap { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; background: #fff; border-radius: 14px; border: 1px solid rgba(36,75,129,0.1); transition: all 0.25s; }
.ag-cap:hover { border-color: rgba(36,75,129,0.24); box-shadow: 0 8px 28px rgba(36,75,129,0.1); transform: translateY(-2px); }
.ag-cap-ico { width: 46px; height: 46px; background: rgba(36,75,129,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #244b81; flex-shrink: 0; }
.ag-cap h4 { font-size: 0.94rem; font-weight: 700; color: #244b81; margin-bottom: 0.3rem; }
.ag-cap p  { font-size: 0.84rem; color: #3e5470; line-height: 1.6; }

/* ── WHY NEXAFLOW ── */
.ag-why { padding: 6rem 0; background: #244b81; }
.ag-why-header { text-align: center; margin-bottom: 3.5rem; }
.ag-why-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.025em; color:#244b81; margin-bottom: 0.75rem; }
.ag-why-header p  { color:#244b81; font-size: 1.05rem; max-width: 520px; margin: 0 auto; }
.ag-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ag-why-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 18px; padding: 2rem; transition: all 0.25s; }
.ag-why-card:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.26); transform: translateY(-4px); }
.ag-why-ico { width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color:#244b81; margin-bottom: 1.25rem; }
.ag-why-card h3 { font-size: 1.05rem; font-weight: 700; color:#244b81; margin-bottom: 0.55rem; }
.ag-why-card p  { font-size: 0.87rem; color:#244b81; line-height: 1.7; }

/* ── CTA ── */
.ag-cta { padding: 6rem 0; background: #fff; }
.ag-cta-wrap { max-width: 680px; margin: 0 auto; text-align: center; }
.ag-cta-wrap h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 800; letter-spacing: -0.03em; color: #244b81; margin-bottom: 1rem; }
.ag-cta-wrap p  { color: #3e5470; font-size: 1.05rem; margin-bottom: 2.5rem; }
.ag-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.ag-foot { background: #111e30; padding: 3rem 0 2rem; }
.ag-foot-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.ag-foot-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.ag-foot-links a { color: rgba(255,255,255,0.45); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.ag-foot-links a:hover { color: #fff; }
.ag-foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.ag-foot-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.ag-chip-dark { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 3px 10px; border-radius: 6px; font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ag-hero-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .ag-hero-visual { order: -1; }
  .ag-network-wrap { width: 320px; height: 320px; }
  .ag-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .ag-what-inner, .ag-how-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ag-cases-grid  { grid-template-columns: 1fr 1fr; }
  .ag-why-grid    { grid-template-columns: repeat(2, 1fr); }
  .ag-caps-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ag-hero { padding: 7rem 0 3rem; }
  .ag-hero h1 { font-size: 2.1rem; }
  .ag-pillars-grid { grid-template-columns: 1fr 1fr; }
  .ag-why-grid    { grid-template-columns: 1fr; }
  .ag-caps-grid   { grid-template-columns: 1fr; }
  .ag-cases-grid  { grid-template-columns: 1fr; }
  .ag-hero-btns   { flex-direction: column; align-items: flex-start; }
  .ag-steps::before { display: none; }
  .ag-network-wrap { width: 260px; height: 260px; }
  .ag-foot-top    { flex-direction: column; align-items: flex-start; }
  .ag-foot-links  { gap: 1rem; }
}
@media (max-width: 480px) {
  .ag-pillars-grid { grid-template-columns: 1fr; }
  .ag-btn-solid, .ag-btn-ghost { width: 100%; justify-content: center; }
  .ag-cta-btns { flex-direction: column; align-items: center; }
}

body{
    font-family: system-ui, Arial;
    background:#f5f7fa;
    margin:0;
    padding-top: 250px; 
}

.container{
    max-width:1000px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

h1{
    margin-top:0;
}

.toolbar{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.toolbar select,
.toolbar input{
    padding:8px 10px;
    border:1px solid #cfd8e3;
    border-radius:6px;
    font-size:14px;
}

table{
    width:100%;
    border-collapse:collapse;
}

thead{
    background:#dbe7f0;
}

th,td{
    padding:12px;
    border-bottom:1px solid #e3e8ef;
    text-align:left;
}

tbody tr:hover{
    background:#f6f9fc;
}

.pagination{
    margin-top:15px;
    display:flex;
    justify-content:center;
    gap:10px;
}

.pagination button{
    padding:8px 14px;
    border:none;
    border-radius:6px;
    background:#0a84ff;
    color:white;
    cursor:pointer;
}

.pagination button:disabled{
    background:#a5c8ff;
    cursor:not-allowed;
}

 :root{
    --rs-container: 1200px;
    --rs-pad-x: 28px;

    --rs-white: #ffffff;
    --rs-white-80: rgba(255,255,255,.80);
    --rs-white-65: rgba(255,255,255,.65);

    --rs-line: rgba(255,255,255,.12);
    --rs-bg-glass: rgba(10, 20, 30, .10);
    --rs-bg-drawer: rgba(10, 16, 22, .92);

    --rs-accent: #0a84ff; 
  }

  .rs-header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background-color: white;
  }


  .rs-header::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background: var(--rs-line);
  }

  .rs-header__inner{
    max-width: var(--rs-container);
    margin: 0 auto;
    padding: 18px var(--rs-pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
     position: relative;
  }

  .rs-header__brand{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .rs-header__logo{
    height: auto;
    width: 100%;
  }


  .rs-nav{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  }

  .rs-nav__list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 34px;
    align-items: center;
  }

  .rs-nav__link{
    color: black;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font: 600 18px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    letter-spacing: .2px;
    padding: 10px 2px;
    position: relative;
    opacity: .95;
    transition: color .2s ease, opacity .2s ease;
  }

  .rs-nav__link:hover{
    color: #0a84ff;
    opacity: 1;
  }

  .rs-nav__link.is-active{
    color: var(--rs-accent);
  }

  .rs-header__burger{
    display: none;
    color: var(--rs-white);
    background: transparent;
    border: 0;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
  }
  .rs-header__burger:hover{
    background: rgba(255,255,255,.08);
  }

  .rs-drawer[hidden]{ display:none; }

  .rs-drawer{
    position: fixed;
    inset: 0;
    z-index: 100000;
  }

  .rs-drawer__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
  }

  .rs-drawer__panel{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(360px, 92vw);
    background: var(--rs-bg-drawer);
    border-left: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(110%);
    transition: transform .22s ease;
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .rs-drawer.is-open .rs-drawer__panel{
    transform: translateX(0);
  }

  .rs-drawer__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .rs-drawer__logo{
    height: 34px;
    width: auto;
    display: block;
  }

  .rs-drawer__close{
    color: var(--rs-white);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
  }

  .rs-drawer__nav{
    display: grid;
    gap: 6px;
    padding-top: 6px;
  }

  .rs-drawer__link{
    color: var(--rs-white-80);
    text-decoration: none;
    font: 650 18px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    padding: 12px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
  }

  .rs-drawer__link:hover{
    color: var(--rs-white);
    background: rgba(255,255,255,.07);
  }

  .rs-drawer__link.is-active{
    color: var(--rs-accent);
    border-color: rgba(10,132,255,.35);
    background: rgba(10,132,255,.10);
  }


  @media (max-width: 980px){
    .rs-nav{ display: none; }
    .rs-header__burger{ display: inline-flex; align-items:center; justify-content:center; }
    .rs-header__inner{ justify-content: space-between; }
    .rs-header__logo{ transform: scale(1.35); }
  }

  @media (max-width: 520px){
    :root{ --rs-pad-x: 18px; }
    .rs-header__inner{ padding: 14px var(--rs-pad-x); }
    .rs-header__logo{ transform: scale(1.2); }
  }

  .wa-float{
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #25D366;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    z-index: 9999;
    text-decoration: none;
    transform: translateZ(0);
  }

  .wa-float:hover{ filter: brightness(0.95); }

  .wa-icon{
    width: 28px;
    height: 28px;
    fill: #fff;
  }

  .wa-bubble{
    position: absolute;
    right: 68px;
    bottom: 50%;
    transform: translateY(50%);
    background: #111;
    color: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    font: 600 13px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: .18s ease;
  }

  .wa-bubble::after{
    content:"";
    position:absolute;
    right:-6px;
    top:50%;
    transform: translateY(-50%);
    border:6px solid transparent;
    border-left-color:#111;
  }

  .wa-float:hover .wa-bubble{
    opacity: 1;
    transform: translateY(50%) translateX(0);
  }


  @media (max-width: 520px){
    .wa-bubble{ display:none; }
  }

  .rs-footer{
  background: #1f2f3a;              
  color: #fff;
  padding: 70px 0;              
  margin-top: 60px;  
}

.rs-footer__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.rs-footer__grid{
  display: flex;
  justify-content: center;          /* centraliza o bloco no meio da tela */
  align-items: flex-start;
  gap: 90px;                        /* distância entre as colunas */
  text-align: left;                 /* títulos e links alinhados como no print */
}

.rs-footer__col{
  min-width: 240px;                 /* mantém as colunas “firmes” */
}

.rs-footer__title{
  margin: 0 0 18px;
  font: 700 22px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .2px;
}

.rs-footer__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;                        /* espaçamento vertical entre itens */
}

.rs-footer__link{
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font: 500 16px/1.25 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  transition: color .2s ease, transform .15s ease;
}

.rs-footer__link:hover{
   color: #0a84ff;
  transform: translateX(2px);
}


@media (max-width: 820px){
  .rs-footer{
    padding: 52px 0;
  }

  .rs-footer__grid{
    flex-direction: column;
    align-items: center;            /* colunas centralizadas no mobile */
    gap: 36px;
    text-align: center;             /* fica melhor em telas pequenas */
  }

  .rs-footer__col{
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }

  .rs-footer__list{
    justify-items: center;
  }
}
