@charset "UTF-8";
  :root{
    --rcta-bg: #ffffff;
    --rcta-ink: #0f172a;
    --rcta-muted: rgba(15,23,42,.72);
    --rcta-muted2: rgba(15,23,42,.58);
    --rcta-border: rgba(15,23,42,.10);
    --rcta-shadow: 0 20px 70px rgba(2,6,23,.12);
    --rcta-radius: 20px;
    --rcta-accent: #2563eb;
    --rcta-accent2: #0ea5e9;
  }

  .research-cta{
    background: var(--rcta-bg);
    color: var(--rcta-ink);
    padding: clamp(34px, 4.5vw, 56px) 0;
  }

  .research-cta__container{
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
  }

  .research-cta__card{
    position: relative;
    overflow: hidden;
    border-radius: var(--rcta-radius);
    border: 1px solid rgba(37,99,235,.18);
    background:
      radial-gradient(800px 360px at 12% 25%, rgba(37,99,235,.12), transparent 55%),
      radial-gradient(700px 320px at 90% 55%, rgba(14,165,233,.10), transparent 55%),
      linear-gradient(180deg, rgba(15,23,42,.02), rgba(15,23,42,.00));
    box-shadow: var(--rcta-shadow);
    padding: 18px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 14px;
    align-items: stretch;
  }

  .research-cta__glow{
    position: absolute;
    inset: -80px;
    background:
      radial-gradient(420px 260px at 25% 25%, rgba(37,99,235,.18), transparent 70%),
      radial-gradient(420px 260px at 75% 70%, rgba(14,165,233,.14), transparent 70%);
    filter: blur(10px);
    opacity: .7;
    pointer-events: none;
  }

  @media (max-width: 980px){
    .research-cta__card{ grid-template-columns: 1fr; }
  }

  .research-cta__content,
  .research-cta__side{
    position: relative;
    z-index: 1;
    border-radius: calc(var(--rcta-radius) - 6px);
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    padding: 16px;
  }

  .research-cta__eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37,99,235,.10);
    border: 1px solid rgba(37,99,235,.18);
    color: rgba(37,99,235,.95);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 12px;
    font-weight: 850;
    width: fit-content;
  }

  .research-cta__title{
    margin: 0 0 10px;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .research-cta__lead{
    margin: 0 0 12px;
    color: var(--rcta-muted);
    line-height: 1.6;
  }

  .research-cta__bullets{
    margin: 0;
    padding-left: 18px;
    color: rgba(15,23,42,.78);
    line-height: 1.55;
  }

  .research-cta__bullets li{ margin: 8px 0; }

  .research-cta__actions{
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .rbtn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 850;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
  }

  .rbtn:hover{ transform: translateY(-1px); filter: brightness(1.02); }

  .rbtn--primary{
    background: rgba(37,99,235,.95);
    border-color: rgba(37,99,235,.35);
    color: #fff;
    box-shadow: 0 12px 30px rgba(37,99,235,.18);
  }

  .rbtn--ghost{
    background: rgba(255,255,255,0);
    border-color: rgba(15,23,42,.14);
    color: rgba(15,23,42,.86);
    box-shadow: none;
  }

  .research-cta__hint{
    margin: 12px 0 0;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    border: 1px dashed rgba(15,23,42,.18);
    background: rgba(15,23,42,.03);
    color: rgba(15,23,42,.74);
    font-size: 13px;
  }

  .research-cta__dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(37,99,235,1), rgba(14,165,233,1));
    flex: 0 0 auto;
  }

  /* Side */
  .research-cta__sideHead{ margin-bottom: 12px; }
  .research-cta__sideTitle{ margin: 0; font-size: 16px; letter-spacing: -0.01em; }
  .research-cta__sideText{ margin: 6px 0 0; color: rgba(15,23,42,.74); line-height: 1.5; }

  .research-cta__chips{ display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }

  .research-cta__chip{
    border: 1px solid rgba(15,23,42,.12);
    background: rgba(255,255,255,0);
    color: rgba(15,23,42,.80);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
  }

  .research-cta__chip:hover{ transform: translateY(-1px); }

  .research-cta__chip.is-active{
    background: rgba(37,99,235,.10);
    border-color: rgba(37,99,235,.22);
    color: rgba(37,99,235,.95);
  }

  .research-cta__mini{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .research-cta__kpi{
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.03);
    padding: 10px;
  }

  .research-cta__kpiValue{
    font-weight: 950;
    letter-spacing: -0.02em;
    color: rgba(2,6,23,.88);
    font-size: 18px;
  }

  .research-cta__kpiLabel{ color: rgba(15,23,42,.60); font-size: 12.5px; margin-top: 2px; }

  .research-cta__link{
    display: inline-flex;
    margin-top: 12px;
    color: rgba(37,99,235,.95);
    text-decoration: none;
    font-weight: 850;
  }

  .research-cta__link:hover{ text-decoration: underline; }

  /* Modal */
  .rmodal{
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 9999;
  }

  .rmodal.is-open{ display: flex; }

  .rmodal__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(2,6,23,.55);
    backdrop-filter: blur(6px);
  }

  .rmodal__panel{
    position: relative;
    width: min(760px, 100%);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(15,23,42,.12);
    box-shadow: 0 30px 90px rgba(2,6,23,.25);
    overflow: hidden;
  }

  .rmodal__head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px;
    border-bottom: 1px solid rgba(15,23,42,.10);
  }

  .rmodal__title{ margin: 0; font-size: 16px; }

  .rmodal__close{
    width: 42px; height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.12);
    background: rgba(15,23,42,.03);
    cursor: pointer;
  }

  .rmodal__content{ padding: 14px; color: rgba(15,23,42,.82); line-height: 1.6; }

  .rmodal__steps{ margin: 0; padding-left: 18px; }
  .rmodal__steps li{ margin: 10px 0; }

  .rmodal__note{ margin: 12px 0 0; color: rgba(15,23,42,.74); }

  .rmodal__foot{
    padding: 14px;
    border-top: 1px solid rgba(15,23,42,.10);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
  }