:root{
  --ch-blue:#2b3e5c;
  --ch-blue-dark:#1f2d44;
  --ch-accent:#778c43;
  --ch-bg:#f3f3f5;
  --ch-text:#1f2230;
  --ch-text-soft:#6a7080;
  --ch-white:#ffffff;
  --ch-border:rgba(31,34,48,.12);
  --ch-shadow:0 12px 28px rgba(0,0,0,.08);
  --ch-radius:22px;
  --ch-container:1320px;
}

.chr-page{
  background:var(--ch-bg);
  color:var(--ch-text);
}

.chr-container{
  width:min(var(--ch-container), calc(100% - 40px));
  margin:0 auto;
}

.chr-section{
  padding:72px 0;
}

.chr-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  font-size:14px;
  font-weight:700;
  color:var(--ch-blue);
}

.chr-eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--ch-accent);
}

.chr-title{
  margin:0 0 18px;
  font-size:clamp(40px, 5.4vw, 74px);
  line-height:.95;
  font-weight:800;
  letter-spacing:-0.02em;
  color:var(--ch-text);
  max-width:11ch;
}

.chr-subtitle{
  margin:0 0 18px;
  font-size:clamp(30px, 3.5vw, 56px);
  line-height:1;
  font-weight:800;
  letter-spacing:-0.02em;
  color:var(--ch-text);
  max-width:16ch;
}

.chr-lead,
.chr-text p,
.chr-faq__body,
.chr-cta p,
.chr-headtext{
  font-size:18px;
  line-height:1.75;
  color:var(--ch-text-soft);
}

.chr-text p{
  margin:0 0 18px;
}

.chr-text p:last-child{
  margin-bottom:0;
}

.chr-btns{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.chr-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:12px;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:14px;
  font-weight:800;
  transition:.25s ease;
}

.chr-btn--primary{
  background:var(--ch-blue);
  border:1.5px solid var(--ch-blue);
  color:var(--ch-white);
}

.chr-btn--primary:hover{
  background:var(--ch-blue-dark);
  border-color:var(--ch-blue-dark);
  color:var(--ch-white);
  transform:translateY(-2px);
}

.chr-btn--secondary{
  background:transparent;
  border:1.5px solid var(--ch-blue);
  color:var(--ch-blue);
}

.chr-btn--secondary:hover{
  background:rgba(43,62,92,.06);
  transform:translateY(-2px);
}

/* HERO */
.chr-hero{
  position:relative;
  overflow:hidden;
  padding:90px 0 76px;
  background:var(--ch-bg);
}

.chr-hero::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  width:min(42vw, 760px);
  height:52%;
  background:var(--ch-blue);
  clip-path:polygon(26% 0, 100% 0, 100% 100%, 0 100%, 13% 72%, 0 72%);
  opacity:.98;
  pointer-events:none;
}

.chr-hero__grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:60px;
  align-items:center;
}

.chr-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}

.chr-tags span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:#eef1f4;
  color:var(--ch-text-soft);
  font-size:14px;
  font-weight:600;
}

.chr-hero__card{
  background:rgba(255,255,255,.45);
  border-radius:28px;
  padding:34px 28px;
  box-shadow:var(--ch-shadow);
  backdrop-filter:blur(2px);
  position:relative;
  z-index:2;
}

.chr-hero__icon{
  width:110px;
  margin:0 auto 24px;
}

/* FIX CENTRADO HERO FORMULARIO */
.chr-reform-form__head .chr-eyebrow{
  justify-content:center;
}

.chr-reform-form__head .chr-subtitle{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  max-width:none;
}

.chr-reform-form__head .chr-headtext{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  max-width:60ch;
}

.chr-hero__list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:14px;
}

.chr-hero__list li{
  font-size:17px;
  line-height:1.5;
  color:var(--ch-text-soft);
  position:relative;
  padding-left:28px;
}

.chr-hero__list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--ch-text);
  font-weight:800;
}

/* GRIDS */
.chr-intro__grid,
.chr-points__grid,
.chr-benefits__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:start;
}

.chr-intro__box,
.chr-points__box,
.chr-benefits__box{
  background:var(--ch-white);
  border-radius:var(--ch-radius);
  box-shadow:var(--ch-shadow);
  padding:30px 28px;
}

.chr-intro__box h3{
  margin:0 0 16px;
  font-size:26px;
  line-height:1.1;
  font-weight:800;
  color:var(--ch-blue);
}

.chr-intro__box ul,
.chr-points__box ul,
.chr-benefits__box ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}

.chr-intro__box li,
.chr-points__box li,
.chr-benefits__box li{
  position:relative;
  padding-left:18px;
  font-size:16px;
  line-height:1.65;
  color:var(--ch-text-soft);
}

.chr-intro__box li::before,
.chr-points__box li::before,
.chr-benefits__box li::before{
  content:"";
  position:absolute;
  left:0;
  top:11px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--ch-accent);
}

/* GOALS */
.chr-goals{
  background:#edf0f4;
}

.chr-goals__head{
  max-width:860px;
  margin:0 auto 32px;
  text-align:center;
}

.chr-goals__head .chr-eyebrow{
  justify-content:center;
}

.chr-goals__head .chr-subtitle{
  max-width:14ch;
  margin:0 auto 20px;
}

.chr-headtext{
  margin:0 auto;
  max-width:64ch;
}

.chr-goals__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.chr-goals__card{
  background:var(--ch-white);
  border-radius:24px;
  box-shadow:var(--ch-shadow);
  padding:28px 24px;
}

.chr-goals__tag{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:#e8edf3;
  color:var(--ch-blue);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:14px;
}

.chr-goals__card h3{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.02;
  font-weight:800;
  color:var(--ch-text);
}

.chr-goals__card p{
  margin:0;
  font-size:16px;
  line-height:1.7;
  color:var(--ch-text-soft);
}

/* INCLUDE */
.chr-include{
  background:var(--ch-blue);
  color:var(--ch-white);
}

.chr-include .chr-eyebrow,
.chr-include .chr-subtitle{
  color:var(--ch-white);
}

.chr-include__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:28px;
}

.chr-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:26px 22px;
  min-height:220px;
}

.chr-card__num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(119,140,67,.18);
  color:var(--ch-accent);
  font-size:15px;
  font-weight:800;
  margin-bottom:16px;
}

.chr-card h3{
  margin:0 0 12px;
  font-size:28px;
  line-height:1.02;
  font-weight:800;
  color:var(--ch-white);
}

.chr-card p{
  margin:0;
  font-size:16px;
  line-height:1.7;
  color:rgba(255,255,255,.86);
}

/* PROCESS */
.chr-process__list{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  margin-top:28px;
}

.chr-step{
  background:var(--ch-white);
  border-radius:24px;
  box-shadow:var(--ch-shadow);
  padding:24px 20px;
}

.chr-step__n{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:50%;
  background:#e8edf3;
  color:var(--ch-blue);
  font-size:15px;
  font-weight:800;
  margin-bottom:14px;
}

.chr-step h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.05;
  font-weight:800;
  color:var(--ch-text);
}

.chr-step p{
  margin:0;
  font-size:15px;
  line-height:1.65;
  color:var(--ch-text-soft);
}

/* FAQ */
.chr-faq{
  padding-top:32px;
}

.chr-faq__bar{
  background:var(--ch-blue);
  color:var(--ch-white);
  text-align:center;
  font-size:24px;
  font-weight:800;
  padding:20px;
  margin-bottom:26px;
}

.chr-faq__item{
  border:1px solid rgba(31,34,48,.08);
  background:#f7f7f8;
}

.chr-faq__q{
  width:100%;
  background:none;
  border:0;
  text-align:left;
  padding:22px 58px 22px 24px;
  font-size:22px;
  line-height:1.2;
  font-weight:800;
  color:var(--ch-text);
  position:relative;
  cursor:pointer;
}

.chr-faq__q::after{
  content:"+";
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  color:var(--ch-blue);
  font-size:28px;
  line-height:1;
  font-weight:400;
}

.chr-faq__item.is-open .chr-faq__q::after{
  content:"−";
}

.chr-faq__a{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .3s ease;
}

.chr-faq__item.is-open .chr-faq__a{
  grid-template-rows:1fr;
}

.chr-faq__body{
  overflow:hidden;
  padding:0 24px;
}

.chr-faq__item.is-open .chr-faq__body{
  padding-bottom:22px;
}

/* REVIEWS */
.chr-reviews__embed{
  margin-top:28px;
}

/* CTA */
.chr-cta{
  background:linear-gradient(180deg,var(--ch-blue) 0%, var(--ch-blue-dark) 100%);
  color:var(--ch-white);
}

.chr-cta__grid{
  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:center;
}

.chr-cta .chr-subtitle{
  color:var(--ch-white);
  margin-bottom:14px;
  max-width:18ch;
}

.chr-cta .chr-eyebrow{
  color:rgba(255,255,255,.88);
}

.chr-cta .chr-eyebrow::before{
  background:var(--ch-accent);
}

.chr-cta p{
  color:rgba(255,255,255,.92);
  max-width:60ch;
}

.chr-cta .chr-btn--primary{
  background:var(--ch-white);
  border-color:var(--ch-white);
  color:var(--ch-blue);
}

.chr-cta .chr-btn--primary:hover{
  background:#f2f4f7;
  border-color:#f2f4f7;
}

/* REVEAL */
.chr-reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .6s ease, transform .6s ease;
}

.chr-reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width:1200px){
  .chr-goals__grid,
  .chr-include__grid{
    grid-template-columns:repeat(2,1fr);
  }

  .chr-process__list{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width:1024px){
  .chr-container{
    width:min(var(--ch-container), calc(100% - 32px));
  }

  .chr-hero{
    padding:64px 0 56px;
  }

  .chr-hero::after{
    width:48vw;
    height:42%;
  }

  .chr-hero__grid,
  .chr-intro__grid,
  .chr-points__grid,
  .chr-benefits__grid,
  .chr-cta__grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .chr-goals__grid{
    grid-template-columns:1fr;
  }

  .chr-title,
  .chr-subtitle{
    max-width:none;
  }

  .chr-faq__q{
    font-size:20px;
  }
}

@media (max-width:767px){
  .chr-container{
    width:min(var(--ch-container), calc(100% - 20px));
  }

  .chr-section{
    padding:52px 0;
  }

  .chr-title{
    font-size:48px;
    line-height:.96;
  }

  .chr-subtitle{
    font-size:34px;
  }

  .chr-lead,
  .chr-text p,
  .chr-faq__body,
  .chr-cta p,
  .chr-headtext{
    font-size:16px;
    line-height:1.65;
  }

  .chr-btn{
    width:100%;
  }

  .chr-btns{
    flex-direction:column;
  }

  .chr-include__grid,
  .chr-process__list{
    grid-template-columns:1fr;
  }

  .chr-faq__bar{
    font-size:20px;
  }

  .chr-faq__q{
    font-size:18px;
    padding:18px 50px 18px 18px;
  }

  .chr-faq__body{
    padding:0 18px;
  }

  .chr-faq__item.is-open .chr-faq__body{
    padding-bottom:18px;
  }
}

/* ================================
FORMULARIO REFORMAS
================================ */

.chr-reform-form__head{
  text-align:center;
  max-width:720px;
  margin:0 auto 60px;
}

.chr-headtext{
  color:#5a5a5a;
  margin-top:10px;
}

.chr-reform-form__wrap{
  display:flex;
  justify-content:center;
}

.chr-reform-form__card{
  background:#ffffff;
  border-radius:12px;
  padding:40px;
  max-width:760px;
  width:100%;
  box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.chr-reform-form__intro{
  margin-bottom:30px;
}

.chr-reform-form__title{
  font-size:22px;
  margin-bottom:6px;
}

.chr-reform-form__text{
  color:#6a6a6a;
}

.chr-reform-form__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.chr-reform-form__grid--bottom{
  margin-top:20px;
}

.chr-field{
  display:flex;
  flex-direction:column;
}

.chr-field label{
  font-size:14px;
  margin-bottom:6px;
}

.chr-field input,
.chr-field select,
.chr-field textarea{
  border:1px solid #dcdcdc;
  border-radius:6px;
  padding:10px 12px;
  font-size:14px;
}

.chr-field textarea{
  resize:vertical;
}

.chr-field--full{
  grid-column:span 2;
}

.chr-field--check{
  font-size:13px;
}

.chr-reform-form__actions{
  margin-top:25px;
  text-align:center;
}

/* ================================
MODAL SUCCESS
================================ */

.chr-modal-success{
  position:fixed;
  inset:0;
  z-index:9999;
}

.chr-modal-success__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.chr-modal-success__box{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  max-width:420px;
  width:calc(100% - 40px);
  background:#fff;
  border-radius:10px;
  padding:35px;
  text-align:center;
  z-index:10001;
}

.chr-modal-success__actions{
  margin-top:20px;
}

/* ================================
RESPONSIVE
================================ */

@media (max-width:768px){
  .chr-reform-form__grid{
    grid-template-columns:1fr;
  }

  .chr-field--full{
    grid-column:span 1;
  }
}

/* HERO FORMULARIO REFORMAS */
.chr-contact-head{
  text-align:center;
  max-width:720px;
  margin:0 auto 50px;
}

/* centrado del eyebrow */
.chr-contact-head .chr-eyebrow{
  justify-content:center;
  width:100%;
}

/* centrado real del título */
.chr-contact-head .chr-subtitle{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  max-width:22ch;
}

/* centrado del párrafo */
.chr-contact-head .chr-headtext{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  max-width:52ch;
}

/* ================================
LINK POLITICA PRIVACIDAD FORMULARIO
================================ */

.chr-field--check a{
  color:inherit;
  text-decoration:underline;
  font-weight:inherit;
}

.chr-field--check a:hover{
  color:inherit;
  text-decoration:underline;
}