:root{
    --nl-green:#008180;
    --nl-orange:#d87625;
  
    --ink:#121a1a;
    --muted:#6b7b7b;
  
    --bg:#ffffff;
    --card:#ffffff;
  
    --line:#d4d4d4;      /* gris limpio como tu screenshot */
    --line2:#c9c9c9;
  
    --shadow: 0 18px 45px rgba(0,0,0,.08);
    --shadowSoft: 0 10px 24px rgba(0,0,0,.06);
  
    --r-xl: 28px;
    --r-lg: 22px;
    --r-md: 18px;
  }
  
  /* section */
  .nlc2{
    background: var(--bg);
    padding: clamp(44px, 6vw, 84px) 0;
    margin-bottom: 60px;
  }
  
  .nlc2__wrap{
    width: min(1120px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
  }
  
  /* left info */
  .nlc2__tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    user-select: none;
    box-shadow: var(--shadowSoft);
    transition: transform .2s ease;
  }
  .nlc2__tag i{ color: var(--nl-green); font-size: 18px; }
  .nlc2__tag:hover{ transform: translateY(-2px); }
  
  .nlc2__title{
    margin: 14px 0 10px;
    color: var(--ink);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.6px;
  }
  .nlc2__title span{ color: var(--nl-green); }
  
  .nlc2__subtitle{
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 62ch;
  }
  
  .nlc2__bullets{
    display: grid;
    gap: 14px;
    margin-top: 12px;
    max-width: 640px;
  }
  
  .nlc2__bullet{
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: #fff;
    box-shadow: var(--shadowSoft);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .nlc2__bullet i{
    font-size: 20px;
    color: var(--nl-green);
    transform: translateY(1px);
  }
  .nlc2__bullet strong{
    display: block;
    color: var(--ink);
    font-size: 15px;
    margin-bottom: 3px;
  }
  .nlc2__bullet span{
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
  }
  .nlc2__bullet:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }
  
  .nlc2__trust{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
  }
  .nlc2__pill{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    font-size: 13px;
    box-shadow: var(--shadowSoft);
    transition: transform .2s ease;
  }
  .nlc2__pill i{ color: var(--nl-orange); font-size: 18px; }
  .nlc2__pill:hover{ transform: translateY(-2px); }
  
  /* right form card */
  .nlc2__formCard{
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    background: var(--card);
    box-shadow: var(--shadow);
    padding: clamp(18px, 2vw, 22px);
  }
  
  .nlc2__form{
    display: grid;
    gap: 14px;
  }
  
  .nlc2__grid2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  
  .nlc2__field{
    position: relative;
  }
  
  .nlc2__input,
  .nlc2__select{
    width: 100%;
    height: 60px;
    border-radius: 20px;
    border: 2px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 16px;
    padding: 0 18px;
    outline: none;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  }
  
  .nlc2__input::placeholder{
    color: #9b9b9b;
    font-weight: 500;
  }
  
  .nlc2__input:hover,
  .nlc2__selectWrap:hover .nlc2__select{
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,.06);
    border-color: var(--line2);
  }
  
  .nlc2__input:focus,
  .nlc2__select:focus{
    border-color: var(--nl-green);
    box-shadow: 0 0 0 4px rgba(0,129,128,.12);
    transform: translateY(-1px);
  }
  
  /* select wrapper w/ chevron */
  .nlc2__selectWrap{
    position: relative;
  }
  .nlc2__select{
    appearance: none;
    -webkit-appearance: none;
    padding-right: 48px;
    cursor: pointer;
  }
  .nlc2__selectWrap i{
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #8b8b8b;
    pointer-events: none;
  }
  
  /* button like screenshot (orange pill) */
  .nlc2__btn{
    margin-top: 2px;
    height: 64px;
    border: none;
    border-radius: 999px;
    background: var(--nl-orange);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .2px;
  
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px 0 12px;
  
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(216,118,37,.26);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    justify-content: flex-start;
  }
  
  .nlc2__btnIcon{
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    display: grid;
    place-items: center;
    border: 2px solid rgba(255,255,255,.22);
  }
  .nlc2__btnIcon i{
    font-size: 26px;
    transform: translateX(1px);
  }
  
  .nlc2__btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(216,118,37,.32);
    filter: saturate(1.02);
  }
  .nlc2__btn:active{
    transform: translateY(0) scale(.99);
  }
  
  .nlc2__legal{
    margin: 6px 0 0;
    color: #8b8b8b;
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* hint + errors */
  .nlc2__hint{
    display: none;
    margin-top: 8px;
    font-size: 12px;
    color: #c93535;
    font-weight: 600;
  }
  
  .nlc2__field.is-error .nlc2__hint{ display: block; }
  .nlc2__field.is-error .nlc2__input,
  .nlc2__field.is-error .nlc2__select{
    border-color: #c93535;
    box-shadow: 0 0 0 4px rgba(201,53,53,.10);
  }
  
  /* toast */
  .nlc2__toast{
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: var(--shadowSoft);
    padding: 12px 14px;
    color: var(--ink);
    font-size: 14px;
  }
  .nlc2__toast.is-show{ display: block; }
  .nlc2__toast.is-ok{ border-color: rgba(0,129,128,.35); }
  .nlc2__toast.is-bad{ border-color: rgba(201,53,53,.35); }
  
  /* reveal */
  .nlc2-rv{
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .nlc2-rv.is-in{
    opacity: 1;
    transform: translateY(0);
  }
  
  /* responsive */
  @media (max-width: 768px){
    .nlc2__wrap{
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .nlc2__subtitle{ max-width: none; }
  }
  
  @media (max-width: 425px){
    .nlc2__grid2{ grid-template-columns: 1fr; }
    .nlc2__formCard{ border-radius: 26px; }
    .nlc2__input, .nlc2__select{ height: 58px; border-radius: 18px; }
    .nlc2__btn{ height: 62px; font-size: 17px; }
  }
  
  @media (max-width: 375px){
    .nlc2__btn{ font-size: 16.5px; }
    .nlc2__btnIcon{ width: 44px; height: 44px; }
  }
  
  @media (max-width: 320px){
    .nlc2__wrap{ width: min(1120px, 94vw); }
    .nlc2__title{ font-size: 26px; }
    .nlc2__subtitle{ font-size: 15px; }
    .nlc2__btn{ gap: 12px; }
  }
