:root{
  --mr-bg:#f5f7fb;
  --mr-surface:#ffffff;
  --mr-surface-soft:#f8fafc;
  --mr-primary:#1E3A5F;
  --mr-primary-strong:#16304d;
  --mr-primary-soft:#e7eef7;
  --mr-accent:#FF6B2C;
  --mr-accent-strong:#e85b20;
  --mr-accent-soft:#fff0e9;
  --mr-text:#0f172a;
  --mr-text-soft:#475569;
  --mr-text-fade:#64748b;
  --mr-border:rgba(15,23,42,.08);
  --mr-border-strong:rgba(15,23,42,.14);
  --mr-success:#0f766e;
  --mr-success-soft:#e8f7f4;
  --mr-shadow:0 24px 70px rgba(15,23,42,.09);
  --mr-shadow-soft:0 12px 32px rgba(15,23,42,.065);
  --mr-shadow-card:0 18px 44px rgba(15,23,42,.08);
  --mr-radius-sm:16px;
  --mr-radius-md:22px;
  --mr-radius-lg:28px;
  --mr-radius-xl:34px;
  --mr-container:1180px;
  --mr-header-h:76px;
  --mr-transition:220ms ease;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,107,44,.12), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(30,58,95,.10), transparent 24%),
    linear-gradient(180deg,#f8fbff 0%,#f5f7fb 42%,#eef3f8 100%);
  color:var(--mr-text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

body::selection{
  background:rgba(255,107,44,.22);
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

.mr-page-shell{
  min-height:100vh;
  overflow:hidden;
}

.mr-container{
  width:min(calc(100% - 32px), var(--mr-container));
  margin:0 auto;
}

.mr-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(15,23,42,.07);
}

.mr-header-inner{
  min-height:var(--mr-header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.mr-brand{
  display:inline-flex;
  align-items:center;
  min-width:0;
}

.mr-brand img{
  height:38px;
  width:auto;
  object-fit:contain;
}

.mr-header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  background:var(--mr-primary);
  color:#fff;
  font-size:.9rem;
  font-weight:800;
  box-shadow:0 14px 28px rgba(30,58,95,.20);
  transition:transform var(--mr-transition), background var(--mr-transition), box-shadow var(--mr-transition);
  white-space:nowrap;
}

.mr-header-cta:hover{
  background:var(--mr-primary-strong);
  transform:translateY(-1px);
  box-shadow:0 18px 34px rgba(30,58,95,.24);
}

.mr-hero{
  position:relative;
  padding:28px 0 30px;
}

.mr-hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  align-items:start;
}

.mr-hero-copy,
.mr-hero-card{
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--mr-shadow);
}

.mr-hero-copy{
  padding:24px 18px 20px;
  border-radius:var(--mr-radius-lg);
}

.mr-kicker,
.mr-section-kicker,
.mr-card-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.74rem;
  line-height:1.2;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--mr-primary);
}

.mr-kicker::before,
.mr-section-kicker::before,
.mr-card-eyebrow::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--mr-accent);
  box-shadow:0 0 0 6px rgba(255,107,44,.14);
  flex:0 0 auto;
}

.mr-hero h1{
  margin:14px 0 14px;
  font-size:clamp(2rem, 6vw, 4.2rem);
  line-height:1.03;
  letter-spacing:-.05em;
  font-weight:900;
  max-width:13ch;
}

.mr-hero-lead{
  margin:0;
  font-size:1rem;
  line-height:1.72;
  color:var(--mr-text-soft);
  max-width:68ch;
}

.mr-hero-points{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin:22px 0 0;
}

.mr-point{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:10px;
  min-height:52px;
  padding:12px 14px;
  background:rgba(248,250,252,.94);
  border:1px solid var(--mr-border);
  border-radius:16px;
  font-size:.95rem;
  font-weight:700;
  color:var(--mr-text);
  line-height:1.45;
  box-shadow:var(--mr-shadow-soft);
}

.mr-point::before{
  content:"";
  width:20px;
  height:20px;
  flex:0 0 20px;
  margin-top:1px;
  border-radius:999px;
  background:
    radial-gradient(circle at center, #fff 0 26%, transparent 27%),
    linear-gradient(180deg,var(--mr-accent),var(--mr-accent-strong));
  box-shadow:0 8px 16px rgba(255,107,44,.22);
}

.mr-hero-proof{
  margin-top:22px;
  padding:18px;
  border-radius:22px;
  background:linear-gradient(135deg, rgba(30,58,95,.98), rgba(22,48,77,.98));
  color:#fff;
  box-shadow:0 18px 38px rgba(30,58,95,.20);
}

.mr-hero-proof-label{
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}

.mr-hero-proof-number{
  margin-top:6px;
  font-size:clamp(2.2rem, 8vw, 4.1rem);
  line-height:.95;
  letter-spacing:-.06em;
  font-weight:900;
}

.mr-hero-proof-text{
  margin:10px 0 0;
  color:rgba(255,255,255,.82);
  font-size:.92rem;
  line-height:1.65;
}

.mr-hero-actions,
.mr-button-row{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:22px;
}

.mr-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:52px;
  border-radius:16px;
  padding:0 18px;
  font-size:.96rem;
  line-height:1.2;
  font-weight:900;
  text-align:center;
  transition:transform var(--mr-transition), background var(--mr-transition), color var(--mr-transition), border-color var(--mr-transition), box-shadow var(--mr-transition);
}

.mr-btn:hover{
  transform:translateY(-1px);
}

.mr-btn-primary{
  background:linear-gradient(180deg,var(--mr-accent),var(--mr-accent-strong));
  color:#fff;
  box-shadow:0 16px 30px rgba(255,107,44,.25);
}

.mr-btn-primary:hover{
  box-shadow:0 20px 38px rgba(255,107,44,.32);
}

.mr-btn-secondary{
  background:#fff;
  color:var(--mr-primary);
  border:1px solid rgba(30,58,95,.14);
  box-shadow:var(--mr-shadow-soft);
}

.mr-btn-secondary:hover{
  border-color:rgba(30,58,95,.24);
  box-shadow:0 16px 34px rgba(15,23,42,.09);
}

.mr-hero-note{
  margin:18px 0 0;
  font-size:.93rem;
  line-height:1.68;
  color:var(--mr-text-fade);
}

.mr-hero-card{
  padding:22px 18px;
  border-radius:24px;
}

.mr-hero-card h2{
  margin:12px 0 10px;
  font-size:1.32rem;
  line-height:1.18;
  letter-spacing:-.035em;
}

.mr-hero-card p{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.7;
  font-size:.96rem;
}

.mr-feature-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:12px;
}

.mr-feature-list li{
  position:relative;
  padding-left:30px;
  color:var(--mr-text);
  font-size:.95rem;
  line-height:1.55;
  font-weight:700;
}

.mr-feature-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:3px;
  width:18px;
  height:18px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--mr-primary),var(--mr-primary-strong));
  box-shadow:0 8px 16px rgba(30,58,95,.16);
}

.mr-feature-list li::after{
  content:"";
  position:absolute;
  left:6px;
  top:8px;
  width:6px;
  height:3px;
  border-left:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(-45deg);
}

.mr-card-price{
  margin-top:22px;
  padding:18px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(30,58,95,.98), rgba(22,48,77,.98));
  color:#fff;
  box-shadow:0 18px 34px rgba(30,58,95,.24);
}

.mr-card-price span,
.mr-card-price small{
  display:block;
}

.mr-card-price span{
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  opacity:.84;
}

.mr-card-price strong{
  display:block;
  margin:7px 0 5px;
  font-size:2.15rem;
  line-height:1;
  letter-spacing:-.055em;
}

.mr-card-price small{
  font-size:.9rem;
  line-height:1.45;
  opacity:.88;
}

.mr-price-anchor{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.16);
  color:rgba(255,255,255,.92);
}

.mr-section{
  padding:28px 0;
}

.mr-section-alt{
  background:linear-gradient(180deg, rgba(255,255,255,.56), rgba(255,255,255,.78));
  border-top:1px solid rgba(255,255,255,.58);
  border-bottom:1px solid rgba(15,23,42,.045);
}

.mr-section-head{
  max-width:820px;
  margin-bottom:20px;
}

.mr-section-head h2{
  margin:12px 0 10px;
  font-size:clamp(1.55rem, 4vw, 2.8rem);
  line-height:1.08;
  letter-spacing:-.04em;
}

.mr-section-head p{
  margin:0;
  font-size:1rem;
  line-height:1.72;
  color:var(--mr-text-soft);
}

.mr-steps{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.mr-step,
.mr-value-box,
.mr-faq-item,
.mr-form-card,
.mr-compare-card,
.mr-card-showcase-list,
.mr-pricing-card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--mr-border);
  box-shadow:var(--mr-shadow-soft);
}

.mr-step{
  padding:18px;
  border-radius:22px;
}

.mr-step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background:linear-gradient(180deg,var(--mr-accent),var(--mr-accent-strong));
  color:#fff;
  font-weight:900;
  font-size:1rem;
  box-shadow:0 14px 24px rgba(255,107,44,.22);
}

.mr-step h3{
  margin:16px 0 8px;
  font-size:1.08rem;
  line-height:1.25;
  letter-spacing:-.025em;
}

.mr-step p{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.68;
  font-size:.96rem;
}

.mr-pricing-note{
  margin-top:16px;
  padding:16px 18px;
  background:rgba(255,255,255,.9);
  border:1px solid var(--mr-border);
  border-radius:18px;
  color:var(--mr-text-soft);
  line-height:1.66;
  box-shadow:var(--mr-shadow-soft);
}

.mr-pricing-note strong{
  color:var(--mr-text);
}

.mr-value-grid,
.mr-card-showcase,
.mr-cta-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  align-items:start;
}

.mr-value-copy h2,
.mr-card-showcase-copy h2,
.mr-cta-copy h2{
  margin:12px 0 12px;
  font-size:clamp(1.55rem, 4vw, 2.65rem);
  line-height:1.08;
  letter-spacing:-.04em;
}

.mr-value-copy p,
.mr-card-showcase-copy p,
.mr-cta-copy p{
  margin:0 0 12px;
  color:var(--mr-text-soft);
  line-height:1.74;
  font-size:1rem;
}

.mr-value-boxes{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.mr-value-box{
  padding:18px;
  border-radius:22px;
}

.mr-value-box h3{
  margin:0 0 8px;
  font-size:1.02rem;
  line-height:1.25;
  letter-spacing:-.025em;
}

.mr-value-box p{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.66;
  font-size:.95rem;
}

.mr-compare{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.mr-compare-card{
  padding:20px 18px;
  border-radius:24px;
}

.mr-compare-card-muted{
  background:rgba(248,250,252,.95);
}

.mr-compare-card-highlight{
  background:linear-gradient(180deg, rgba(30,58,95,.985), rgba(22,48,77,.985));
  color:#fff;
  border-color:rgba(30,58,95,.42);
  box-shadow:0 22px 42px rgba(30,58,95,.22);
}

.mr-compare-title{
  font-size:1.08rem;
  line-height:1.25;
  font-weight:900;
  letter-spacing:-.025em;
}

.mr-compare-list{
  list-style:none;
  padding:0;
  margin:16px 0 0;
  display:grid;
  gap:12px;
}

.mr-compare-list li{
  position:relative;
  padding-left:24px;
  color:var(--mr-text-soft);
  line-height:1.6;
  font-size:.95rem;
}

.mr-compare-card-highlight .mr-compare-list li{
  color:rgba(255,255,255,.9);
}

.mr-compare-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--mr-accent);
}

.mr-card-showcase-list{
  border-radius:24px;
  padding:20px 18px;
}

.mr-pricing-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.mr-pricing-card{
  position:relative;
  padding:22px 18px 20px;
  border-radius:24px;
  overflow:hidden;
}

.mr-pricing-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg,var(--mr-accent),var(--mr-accent-strong));
}

.mr-pricing-card-main{
  border-color:rgba(255,107,44,.26);
  box-shadow:0 22px 42px rgba(255,107,44,.12);
}

.mr-pricing-card-commission{
  background:linear-gradient(180deg, rgba(30,58,95,.985), rgba(22,48,77,.985));
  color:#fff;
  border-color:rgba(30,58,95,.42);
}

.mr-pricing-card-commission .mr-plan-tag{
  background:rgba(255,255,255,.13);
  color:#fff;
}

.mr-pricing-card-commission p{
  color:rgba(255,255,255,.86);
}

.mr-plan-tag{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(30,58,95,.08);
  color:var(--mr-primary);
  font-size:.73rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.mr-pricing-card h3{
  margin:14px 0 10px;
  font-size:clamp(2rem, 7vw, 2.95rem);
  line-height:.95;
  letter-spacing:-.06em;
}

.mr-pricing-card h3 span{
  font-size:1rem;
  letter-spacing:-.02em;
  color:var(--mr-text-soft);
}

.mr-pricing-card-commission h3 span,
.mr-pricing-card-commission h3,
.mr-pricing-card-commission .mr-pricing-card h3 span{
  color:#fff;
}

.mr-pricing-card p{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.66;
  font-size:.95rem;
}
.mr-pricing-card-commission p{
  color:rgba(255,255,255,.92);
}

.mr-pricing-card-commission .mr-plan-tag{
  background:rgba(255,255,255,.15);
  color:#ffffff;
}

.mr-pricing-card-commission h3,
.mr-pricing-card-commission h3 span{
  color:#ffffff;
}
.mr-specialties{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.mr-specialties span{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  border:1px solid var(--mr-border);
  box-shadow:var(--mr-shadow-soft);
  color:var(--mr-text);
  font-size:.92rem;
  font-weight:700;
  line-height:1.3;
}

.mr-faq{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.mr-faq-item{
  padding:18px;
  border-radius:20px;
}

.mr-faq-item h3{
  margin:0 0 8px;
  font-size:1rem;
  line-height:1.38;
  letter-spacing:-.02em;
}

.mr-faq-item p{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.68;
  font-size:.95rem;
}

.mr-section-cta{
  padding-bottom:36px;
}

.mr-form-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:0;
  padding:24px 18px;
  border-radius:26px;
  min-height:280px;
  background:rgba(255,255,255,.96);
  box-shadow:var(--mr-shadow);
}

.mr-form-card h3{
  margin:0 0 12px;
  font-size:clamp(1.45rem, 3.2vw, 2.1rem);
  line-height:1.08;
  letter-spacing:-.04em;
}

.mr-form-card p{
  margin:0 0 18px;
  color:var(--mr-text-soft);
  line-height:1.7;
}

.mr-form-card .mr-btn{
  width:100%;
}

.mr-form-note{
  margin-top:16px;
  padding:14px;
  border-radius:16px;
  background:var(--mr-surface-soft);
  border:1px solid var(--mr-border);
  color:var(--mr-text-fade);
  font-size:.9rem;
  line-height:1.62;
}

.mr-footer{
  padding:20px 0 30px;
}

.mr-footer-inner{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-top:14px;
  border-top:1px solid rgba(15,23,42,.08);
}

.mr-footer-brand img{
  height:34px;
  width:auto;
}

.mr-footer p{
  margin:0;
  color:var(--mr-text-fade);
  line-height:1.6;
  font-size:.92rem;
}

@media (min-width:640px){
  .mr-container{
    width:min(calc(100% - 40px), var(--mr-container));
  }

  .mr-hero{
    padding:34px 0 34px;
  }

  .mr-hero-copy{
    padding:28px 24px 24px;
  }

  .mr-hero-card,
  .mr-form-card{
    padding:24px;
  }

  .mr-hero-actions,
  .mr-button-row{
    flex-direction:row;
    flex-wrap:wrap;
  }

  .mr-btn{
    width:auto;
    min-width:210px;
  }

  .mr-form-card .mr-btn{
    width:auto;
    min-width:250px;
  }

  .mr-steps,
  .mr-value-boxes,
  .mr-faq,
  .mr-pricing-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .mr-compare{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .mr-footer-inner{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }
}

@media (min-width:860px){
  :root{
    --mr-header-h:82px;
  }

  .mr-brand img{
    height:42px;
  }

  .mr-hero{
    padding:44px 0 42px;
  }

  .mr-hero-grid{
    grid-template-columns:minmax(0,1.32fr) minmax(340px,.82fr);
    gap:22px;
  }

  .mr-hero-copy{
    padding:36px 34px 32px;
    border-radius:var(--mr-radius-xl);
  }

  .mr-hero-card{
    padding:28px 24px;
    border-radius:30px;
    position:sticky;
    top:102px;
  }

  .mr-hero h1{
    font-size:3.25rem;
    line-height:1.06;
    max-width:13ch;
  }

  .mr-hero-points{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .mr-section{
    padding:44px 0;
  }

  .mr-steps{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }

  .mr-steps-five{
    grid-template-columns:repeat(5, minmax(0,1fr));
  }

  .mr-steps-five .mr-step{
    padding:16px;
  }

  .mr-steps-five .mr-step h3{
    font-size:1rem;
  }

  .mr-steps-five .mr-step p{
    font-size:.92rem;
  }

  .mr-value-grid,
  .mr-card-showcase,
  .mr-cta-grid{
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:22px;
  }

  .mr-value-boxes{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .mr-form-card{
    min-height:100%;
    padding:32px 28px;
  }
}

@media (min-width:1100px){
  .mr-hero{
    padding:54px 0 50px;
  }

  .mr-hero-grid{
    gap:28px;
  }

  .mr-section{
    padding:54px 0;
  }

  .mr-pricing-grid{
    grid-template-columns:1.15fr 1fr 1fr 1.15fr;
    align-items:stretch;
  }

  .mr-pricing-card{
    height:100%;
  }

  .mr-section-head{
    margin-bottom:26px;
  }
}

@media (max-width:420px){
  .mr-container{
    width:min(calc(100% - 24px), var(--mr-container));
  }

  .mr-header-cta{
    min-height:40px;
    padding:0 12px;
    font-size:.82rem;
  }

  .mr-brand img{
    height:34px;
  }

  .mr-hero-copy,
  .mr-hero-card,
  .mr-step,
  .mr-value-box,
  .mr-compare-card,
  .mr-pricing-card,
  .mr-faq-item,
  .mr-form-card,
  .mr-card-showcase-list{
    border-radius:20px;
  }

  .mr-hero h1{
    max-width:none;
  }

  .mr-kicker,
  .mr-section-kicker,
  .mr-card-eyebrow{
    font-size:.68rem;
    letter-spacing:.065em;
  }

  .mr-hero-proof{
    padding:16px;
  }

  .mr-specialties span{
    width:100%;
    justify-content:center;
    text-align:center;
  }
}

/* Nuevos bloques: digitalización, asistente, tarjeta digital y beneficios ReformaProtegida */
.mr-process-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.mr-process-card{
  position:relative;
  overflow:hidden;
  padding:20px 18px;
  border-radius:24px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--mr-border);
  box-shadow:var(--mr-shadow-soft);
}

.mr-process-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg,var(--mr-accent),var(--mr-accent-strong));
}

.mr-process-card span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:14px;
  background:rgba(30,58,95,.08);
  color:var(--mr-primary);
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.04em;
}

.mr-process-card h3{
  margin:14px 0 8px;
  font-size:1.08rem;
  line-height:1.22;
  letter-spacing:-.025em;
}

.mr-process-card p{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.68;
  font-size:.95rem;
}

.mr-split-panel{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  align-items:stretch;
}

.mr-panel-dark,
.mr-panel-light{
  border-radius:28px;
  box-shadow:var(--mr-shadow);
  overflow:hidden;
}

.mr-panel-dark{
  padding:28px 22px;
  background:linear-gradient(180deg, rgba(30,58,95,.985), rgba(22,48,77,.985));
  color:#fff;
  border:1px solid rgba(30,58,95,.42);
}

.mr-panel-dark .mr-card-eyebrow{
  color:#fff;
}

.mr-panel-dark h2{
  margin:14px 0 12px;
  font-size:clamp(1.55rem, 4vw, 2.65rem);
  line-height:1.08;
  letter-spacing:-.04em;
}

.mr-panel-dark p{
  margin:0;
  color:rgba(255,255,255,.86);
  line-height:1.72;
  font-size:1rem;
}

.mr-panel-light{
  padding:22px 18px;
  background:rgba(255,255,255,.94);
  border:1px solid var(--mr-border);
}

.mr-benefit-list{
  display:grid;
  gap:14px;
}

.mr-benefit-list > div{
  padding:16px;
  border-radius:20px;
  background:var(--mr-surface-soft);
  border:1px solid var(--mr-border);
}

.mr-benefit-list h3{
  margin:0 0 8px;
  font-size:1.02rem;
  line-height:1.25;
  letter-spacing:-.025em;
}

.mr-benefit-list p{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.66;
  font-size:.95rem;
}

.mr-tool-card{
  padding:17px;
  border-radius:20px;
  background:var(--mr-surface-soft);
  border:1px solid var(--mr-border);
}

.mr-tool-card + .mr-tool-card{
  margin-top:12px;
}

.mr-tool-card h3{
  margin:0 0 8px;
  font-size:1.02rem;
  line-height:1.25;
  letter-spacing:-.025em;
}

.mr-tool-card p{
  margin:0;
  color:var(--mr-text-soft);
  line-height:1.66;
  font-size:.95rem;
}

@media (min-width:640px){
  .mr-process-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (min-width:860px){
  .mr-process-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }

  .mr-split-panel{
    grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
    gap:22px;
  }

  .mr-panel-dark{
    padding:34px 30px;
  }

  .mr-panel-light{
    padding:26px 24px;
  }
}

@media (min-width:1100px){
  .mr-pricing-grid-three{
    grid-template-columns:1.15fr 1fr 1.15fr;
  }
}

@media (max-width:420px){
  .mr-process-card,
  .mr-panel-dark,
  .mr-panel-light,
  .mr-benefit-list > div,
  .mr-tool-card{
    border-radius:20px;
  }
}
